Skip to content

Commit c359134

Browse files
committed
test: disable tests/test/test-error-paths in esbuild run
This test is currently broken
1 parent 5482d62 commit c359134

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/legacy-cli/e2e/tests/test/test-error-paths.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
import { getGlobalVariable } from '../../utils/env';
12
import { writeMultipleFiles } from '../../utils/fs';
23
import { ng } from '../../utils/process';
34
import { expectToFail } from '../../utils/utils';
45

56
export default async function () {
7+
if (getGlobalVariable('argv')['esbuild']) {
8+
// TODO: enable once this is fixed when using the esbuild builder.
9+
return;
10+
}
11+
612
await writeMultipleFiles({
713
'src/app/app.component.spec.ts': `
814
describe('AppComponent', () => {

0 commit comments

Comments
 (0)