@joystick.js/test-canary 0.0.0-canary.73 → 0.0.0-canary.75
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.
- package/dist/index.js +1 -1
- package/dist/test.js +1 -1
- package/package.json +1 -1
- package/src/index.js +2 -2
- package/src/test.js +1 -1
- /package/dist/helpers/{component → render}/event.js +0 -0
- /package/dist/helpers/{component → render}/index.js +0 -0
- /package/src/helpers/{component → render}/event.js +0 -0
- /package/src/helpers/{component → render}/index.js +0 -0
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import
|
|
1
|
+
import r from"./test.js";import o from"./helpers/api/index.js";import e from"./helpers/render/index.js";import t from"./helpers/databases/index.js";import m from"./helpers/email/index.js";import f from"./helpers/queues/index.js";import a from"./helpers/load/index.js";import p from"./helpers/routes/index.js";import i from"./helpers/uploaders/index.js";import s from"./helpers/websockets/index.js";var w={after:r.after,afterEach:r.afterEach,api:o,before:r.before,beforeEach:r.beforeEach,render:e,databases:t,email:m,load:a,queues:f,routes:p,that:r.that,uploaders:i,websockets:s};export{w as default};
|
package/dist/test.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import r from"ava";let n=[];r.after.always(()=>{console.log("CLEANUP USERS")});class l{constructor(){}signup(e=[]){}login(e=[]){}accounts(){return{signup:this.signup,login:this.login}}before(e=null){return r.serial.before(e)}beforeEach(e=null){return r.beforeEach(e)}after(e=null){return r.after.always(e)}afterEach(e=null){return r.afterEach.always(e)}that(e="",t=null){return r.serial(e,t)}}var u=new l;export{u as default};
|
|
1
|
+
import r from"ava";let n=[];r.serial.after.always(()=>{console.log("CLEANUP USERS")});class l{constructor(){}signup(e=[]){}login(e=[]){}accounts(){return{signup:this.signup,login:this.login}}before(e=null){return r.serial.before(e)}beforeEach(e=null){return r.beforeEach(e)}after(e=null){return r.after.always(e)}afterEach(e=null){return r.afterEach.always(e)}that(e="",t=null){return r.serial(e,t)}}var u=new l;export{u as default};
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import test from './test.js';
|
|
2
2
|
import api from './helpers/api/index.js';
|
|
3
|
-
import
|
|
3
|
+
import render from './helpers/render/index.js';
|
|
4
4
|
import databases from './helpers/databases/index.js';
|
|
5
5
|
import email from './helpers/email/index.js';
|
|
6
6
|
import queues from './helpers/queues/index.js';
|
|
@@ -15,7 +15,7 @@ export default {
|
|
|
15
15
|
api,
|
|
16
16
|
before: test.before,
|
|
17
17
|
beforeEach: test.beforeEach,
|
|
18
|
-
|
|
18
|
+
render,
|
|
19
19
|
databases,
|
|
20
20
|
email,
|
|
21
21
|
load,
|
package/src/test.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|