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

v0.1.10

Compare
Choose a tag to compare
@old-fusion-bot old-fusion-bot released this 17 Nov 20:41

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)