-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathbuild.spec.js
56 lines (47 loc) · 1.48 KB
/
build.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const path = require('path');
const spawn = require('cross-spawn');
const rimraf = require('rimraf');
const expect = require('unexpected');
const Nightmare = require('nightmare');
const testAppName = 'test-app';
const rootDir = path.resolve(__dirname, '..');
const testAppDir = path.join(rootDir, testAppName);
const createElmAppCmd = path.join(rootDir, 'bin/create-elm-app-cli.js');
const elmAppCmd = path.join(rootDir, 'bin/elm-app-cli.js');
describe.skip('Creating and making a build of Elm application', function() {
this.timeout(1000 * 60 * 5); // 5 minutes.
before(function(done) {
this.enableTimeouts(false);
process.env.PUBLIC_URL = './';
const { status: createStatus } = spawn.sync(
'node',
[createElmAppCmd, testAppName],
{ cwd: rootDir }
);
if (createStatus !== 0) {
return done(false);
}
const { status: buildStatus } = spawn.sync('node', [elmAppCmd, 'build'], {
cwd: testAppDir
});
if (buildStatus !== 0) {
return done(false);
}
return done();
});
after(() => {
rimraf.sync(testAppDir);
this.enableTimeouts(true);
});
it('compiled correctly and renders "Your Elm App is working!" text', done => {
Nightmare()
.goto('file://' + path.resolve(testAppDir, 'build/index.html'))
.evaluate(() => document.body.innerText)
.end()
.then(result => {
expect(result.trim(), 'to be', 'Your Elm App is working!');
done();
})
.catch(done);
});
});