Skip to content

Commit 097771e

Browse files
Merge pull request #26 from getmimo/move-helper-to-sphinx-instead
fixed export setup
2 parents 3550311 + cd9f582 commit 097771e

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

dist/falcon/index.js

+8
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,11 @@ const isEqual = (actual, expected) => {
8181
}
8282
return actual;
8383
};
84+
85+
module.exports = {
86+
test,
87+
end,
88+
beforeEach,
89+
summary,
90+
isEqual,
91+
};

falcon/index.js

+8
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,11 @@ const isEqual = (actual, expected) => {
8181
}
8282
return actual;
8383
};
84+
85+
module.exports = {
86+
test,
87+
end,
88+
beforeEach,
89+
summary,
90+
isEqual,
91+
};

testrunner-examples/test-falcon-2.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
const { test, isEqual, end, domLoaded } = require('../falcon');
1+
const { test, isEqual, end } = require('../falcon');
2+
const { domLoaded } = require('../dist/index.js');
3+
24
var rewire = require('rewire');
35
var chai = require('chai');
46
chai.should();

0 commit comments

Comments
 (0)