@joystick.js/test-canary 0.0.0-canary.7 → 0.0.0-canary.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@joystick.js/test-canary",
3
3
  "type": "module",
4
- "version": "0.0.0-canary.7",
4
+ "version": "0.0.0-canary.9",
5
5
  "description": "Isomorphic testing framework for the Joystick JavaScript framework.",
6
6
  "main": "dist/index.js",
7
7
  "scripts": {
package/src/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import _test from './test.js';
1
+ import test from './test.js';
2
2
  import api from './helpers/api/index.js';
3
3
  import component from './helpers/component/index.js';
4
4
  import databases from './helpers/databases/index.js';
@@ -17,7 +17,7 @@ export default {
17
17
  load,
18
18
  queues,
19
19
  routes,
20
- that: _test.that,
20
+ that: test.that,
21
21
  uploaders,
22
22
  websockets,
23
23
  };