We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tests/test/test-error-paths
1 parent 5482d62 commit c359134Copy full SHA for c359134
tests/legacy-cli/e2e/tests/test/test-error-paths.ts
@@ -1,8 +1,14 @@
1
+import { getGlobalVariable } from '../../utils/env';
2
import { writeMultipleFiles } from '../../utils/fs';
3
import { ng } from '../../utils/process';
4
import { expectToFail } from '../../utils/utils';
5
6
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
+
12
await writeMultipleFiles({
13
'src/app/app.component.spec.ts': `
14
describe('AppComponent', () => {
0 commit comments