Skip to content

Commit

Permalink
skip ember-data-codemod in tests
Browse files Browse the repository at this point in the history
prevent error:

```
SyntaxError: /tmp/jscodeshift2023104-2774-wm9iah.q9gz.js: Missing semicolon. (1:3)
```
  • Loading branch information
Kelly Selden committed Nov 4, 2023
1 parent df4a70d commit 2ea5302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('runs codemods', function() {

for (let codemod of codemods) {
it(codemod, async function() {
if (!applicableCodemods.includes(codemod)) {
if (!applicableCodemods.includes(codemod) || codemod === 'ember-data-codemod') {
this.skip();
return;
}
Expand Down

0 comments on commit 2ea5302

Please sign in to comment.