Skip to content

Commit 0bf8152

Browse files
committed
fix: CI
1 parent 973f666 commit 0bf8152

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/e2e/testRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const runTests = async (): Promise<void> => {
123123
}
124124
};
125125

126-
let skippedTests: string[] = [];
126+
const skippedTests: string[] = [];
127127
const clearTestResults = (test: TestConfig) => {
128128
skippedTests.push(test.name);
129129

tests/unit/E2EMarkdownTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ const results = {
1313
describe('markdown formatter', () => {
1414
it('should format significant changes properly', () => {
1515
const data = compareResults(results.main, results.delta, {commentLinking: 'ms'});
16-
expect(buildMarkdown(data)).toMatchSnapshot();
16+
expect(buildMarkdown(data, [])).toMatchSnapshot();
1717
});
1818
});

0 commit comments

Comments
 (0)