Skip to content

Commit

Permalink
fix: disable the new linting rule for the end to end test, at least f…
Browse files Browse the repository at this point in the history
…or now
  • Loading branch information
lgandecki committed Aug 22, 2023
1 parent 6ff9c4e commit 9697ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/end-to-end-test.ts
Expand Up @@ -29,7 +29,7 @@ shelljs.sed('-i', /"chimp": "0.0.0-development"/, '"chimp": "../chimp"', path.jo

quietExec('npm install', { cwd: pathToRunFromChimp });
quietExec('npm run type-check', { cwd: pathToRunFromChimp });
quietExec('npm run lint', { cwd: pathToRunFromChimp });
quietExec("npm run lint -- --rule 'jest/expect-expect: off'", { cwd: pathToRunFromChimp });
spawn('npm', ['start'], {
stdio: 'ignore',
detached: true,
Expand Down

0 comments on commit 9697ff1

Please sign in to comment.