Skip to content

Commit f01237c

Browse files
author
Robert Jackson
committed
Fix in-repo addon acceptance test.
1 parent eba6817 commit f01237c

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

test/fixtures/input/lib/special-sauce/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"ember-addon"
55
],
66
"dependencies": {
7+
"ember-cli-babel": "*",
78
"ember-cli-htmlbars": "*"
89
}
910
}

test/fixtures/output/lib/special-sauce/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"ember-addon"
55
],
66
"dependencies": {
7+
"ember-cli-babel": "*",
78
"ember-cli-htmlbars": "*"
89
}
910
}

test/run-test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ const execOpts = { cwd: inputDir, stderr: 'inherit' };
4747

4848
try {
4949
await execa('diff', ['-rq', './app', '../output/app'], execOpts);
50+
await execa('diff', ['-rq', './lib', '../output/lib'], execOpts);
5051
} catch (e) {
5152
console.error('codemod did not run successfully');
5253
console.log(e.stdout);

0 commit comments

Comments
 (0)