• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

hybridsjs / hybrids / 9385835129

05 Jun 2024 02:19PM UTC coverage: 46.684% (-53.2%) from 99.911%
9385835129

Pull #258

github

web-flow
Merge 67d5f8f47 into 2b0c01bf9
Pull Request #258: feat: remove `content` property & add shadow mode detection to render property

611 of 1778 branches covered (34.36%)

54 of 78 new or added lines in 8 files covered. (69.23%)

1172 existing lines in 24 files now uncovered.

1049 of 2247 relevant lines covered (46.68%)

32.63 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/template/methods.js
1
export function key(id) {
UNCOV
2
  this.id = id;
×
UNCOV
3
  return this;
×
4
}
5

6
export function style(...styles) {
UNCOV
7
  this.styleSheets = this.styleSheets || [];
×
UNCOV
8
  this.styleSheets.push(...styles);
×
9

UNCOV
10
  return this;
×
11
}
12

13
export function css(parts, ...args) {
UNCOV
14
  this.styleSheets = this.styleSheets || [];
×
15

UNCOV
16
  let result = parts[0];
×
UNCOV
17
  for (let index = 1; index < parts.length; index++) {
×
UNCOV
18
    result +=
×
19
      (args[index - 1] !== undefined ? args[index - 1] : "") + parts[index];
×
20
  }
21

UNCOV
22
  this.styleSheets.push(result);
×
23

UNCOV
24
  return this;
×
25
}
26

27
export function use(plugin) {
UNCOV
28
  this.plugins = this.plugins || [];
×
UNCOV
29
  this.plugins.push(plugin);
×
30

UNCOV
31
  return this;
×
32
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc