Skip to content

Commit fa5b1d1

Browse files
committed
ci: improve transparency
1 parent 3902d1c commit fa5b1d1

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.github/workflows/ci_coverage-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
windows:
1212
runs-on: windows-latest
13-
timeout-minutes: 10
13+
timeout-minutes: 15
1414
strategy:
1515
fail-fast: false
1616
name: Windows

src/modules/helpers/exit.ts

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ process.on('unhandledRejection', (err) => {
2323
process.exitCode = 1;
2424
});
2525

26-
/* c8 ignore next 5 */ // Unknown external error
2726
process.on('uncaughtException', (err) => {
2827
if (!(err instanceof AssertionError)) console.error('uncaughtException', err);
2928

src/services/run-test-file.ts

-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ export const runTestFile = async (path: string): Promise<boolean> => {
9191
resolve(result);
9292
});
9393

94-
/* c8 ignore start */ // Unknown external error
9594
child.on('error', (err) => {
9695
end = hrtime(start);
9796

@@ -110,6 +109,5 @@ export const runTestFile = async (path: string): Promise<boolean> => {
110109

111110
resolve(false);
112111
});
113-
/* c8 ignore stop */
114112
});
115113
};

0 commit comments

Comments
 (0)