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

hybridsjs / hybrids / 1351
100%
main: 100%

Build:
Build:
LAST BUILD BRANCH: fix-store
DEFAULT BRANCH: main
Ran 16 Jul 2021 07:49AM UTC
Jobs 1
Files 21
Run time 3s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
1351

push

travis-ci-com

web-flow
feat(define): replace call for a map of components to tagged component definitions (#170)

BREAKING CHANGE: Passing a map of components to the `define()` function is no longer supported. Object argument will be interpreted as a tagged component definition. A preferred way to refactor old code is to extend the definition of the component with the `tag` property, and pass definitions to the `define()` function as a list of arguments. If your definition contains `tag` property with another purpose, you can still use the `define(tagName, descriptors)` version.

From:
```js
const MyElement = { ... };
const MyOtherElement = { ... };

define({ MyElement, MyOtherElement });
```
To:
```js
const MyElement = { tag: "my-element", .. };
const MyOtherElement = { tag: "my-other-element", ... };

define(MyElement, MyOtherElement);
```

1022 of 1024 branches covered (99.8%)

11 of 11 new or added lines in 2 files covered. (100.0%)

1316 of 1316 relevant lines covered (100.0%)

150.22 hits per line

Jobs
ID Job ID Ran Files Coverage
1 1351.1 16 Jul 2021 07:49AM UTC 0
100.0
Travis Job 1351.1
Source Files on build 1351
Detailed source file information is not available for this build.
  • Back to Repo
  • Build #1351
  • 5bffc984 on github
  • Prev Build on master (#1346)
  • Next Build on master (#1352)
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