Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
test: fix test breaking on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jun 17, 2021
1 parent 27450ce commit ba7f2f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ export function inspectConsole() {
return {
stdout: stdoutOutput.output
.map((line) => stripAnsi(line))
.filter((line) => !line.trim().startsWith('adonis:require-ts')),
.filter((line) => !line.trim().includes('adonis:require-ts')),
stderr: stderrOutput.output
.map((line) => stripAnsi(line))
.filter((line) => !line.trim().startsWith('adonis:require-ts')),
.filter((line) => !line.trim().includes('adonis:require-ts')),
}
}
}

0 comments on commit ba7f2f8

Please sign in to comment.