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 ae92f61 commit edc6afbCopy full SHA for edc6afb
tests/legacy-cli/e2e/tests/misc/fallback.ts
@@ -17,13 +17,7 @@ export default function () {
17
assert.strictEqual(response.status, 200);
18
assert.match(await response.text(), /<app-root><\/app-root>/);
19
})
20
- .then(
21
- () => killAllProcesses(),
22
- (err) => {
23
- killAllProcesses();
24
- throw err;
25
- },
26
- )
+ .finally(() => killAllProcesses())
27
// should correctly fallback to a changed index
28
.then(() => moveFile('src/index.html', 'src/not-index.html'))
29
.then(() =>
0 commit comments