Skip to content

Commit 116baf9

Browse files
committed
test: fix more eject tests
1 parent d5f047d commit 116baf9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/elm-app.eject.spec.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ const createElmAppCmd = path.join(
1414
root,
1515
'./packages/create-elm-app/bin/create-elm-app-cli.js'
1616
);
17+
const elmAppCmd = path.join(
18+
root,
19+
'./packages/create-elm-app/bin/elm-app-cli.js'
20+
);
1721

1822
describe('Ejecting Elm application. (Please wait...)', () => {
1923
before(done => {
@@ -70,7 +74,7 @@ describe('Ejecting Elm application. (Please wait...)', () => {
7074
});
7175

7276
it('Ejected application should have the config available', () => {
73-
const path1 = path.join(root, './config');
77+
const path1 = path.join(root, './packages/create-elm-app/config');
7478
const path2 = path.join(testAppDir, './config');
7579
const { same } = dircompare.compareSync(path1, path2);
7680
expect(same, 'to be', true);

0 commit comments

Comments
 (0)