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.
1 parent 13d21c2 commit 84a6830Copy full SHA for 84a6830
1 file changed
tests/legacy-cli/e2e/tests/build/disk-cache.ts
@@ -12,6 +12,7 @@ export default async function () {
12
// Should be enabled by default.
13
process.env['CI'] = '0';
14
await configureAndRunTest();
15
+ await expectFileToExist(defaultCachePath);
16
17
// Should not write cache when it's disabled
18
await configureAndRunTest({ enabled: false });
@@ -49,5 +50,8 @@ async function configureAndRunTest(cacheOptions?: {
49
50
}),
51
]);
52
53
+ await expectFileNotToExist(defaultCachePath);
54
+ await expectFileNotToExist(overriddenCachePath);
55
+
56
await ng('build');
57
}
0 commit comments