We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9bbe63 + 60dab1b commit 60214f3Copy full SHA for 60214f3
2 files changed
.travis.yml
@@ -0,0 +1,9 @@
1
+language: node_js
2
+node_js:
3
+ - "6"
4
+script:
5
+ - npm run test
6
+ - npm run functional-test
7
+cache:
8
+ directories:
9
+ - "node_modules"
__tests__/common/smp.test.js
@@ -20,6 +20,8 @@ const runWebpack = config =>
20
});
21
22
23
+jest.setTimeout(20000);
24
+
25
describe("smp - " + __dirname.split("/").pop(), () => {
26
let distApp;
27
beforeAll(() => runWebpack(webpackConfig).then(file => (distApp = file)));
0 commit comments