Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Releases: fusionjs/fusion-cli

v0.1.12

01 Dec 19:34
Compare
Choose a tag to compare

Changelog

  • Include shared entry file in tests for real coverage (#48)
  • Check the existence of the shared entry file (#45)

v0.1.11

30 Nov 22:39
Compare
Choose a tag to compare

Changelog

  • Add more nyc reporters (#42)
  • Fix error message (#38)

v0.1.10

17 Nov 20:41
Compare
Choose a tag to compare

Changelog

Highlighted Changes

  • Switch expected test entry structure to colocated, glob-based pattern (#27)

Other Changes

  • Add ES6/7 Polyfills (#33)
  • Upgrade docker-compose plugin to v1.7.0 (#31)
  • Handle errors in initial compilation in dev command (#30)
  • Use Buildkite and Docker for CI (#26)
  • Add initial implementation (#2)

Migration Guide

Test entries

Tests can now be colocated in arbitrary directories

Before

Only root is supported

  • src/test/browser/index.js
  • src/test/browser/index.js

After

Root

  • src/__tests__/foo.node.js (node only)
  • src/__tests__/bar.browser.js (browser only)
  • src/__tests__/qux.js (universal)

Nested

  • src/subdir/__tests__/foo.node.js (node only)
  • src/subdir/__tests__/bar.browser.js (browser only)
  • src/subdir/__tests__/qux.js (universal)