Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Oct 23, 2024
1 parent b8a0935 commit eeb623d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/e2e/testRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const runTests = async (): Promise<void> => {
}
};

let skippedTests: string[] = [];
const skippedTests: string[] = [];
const clearTestResults = (test: TestConfig) => {
skippedTests.push(test.name);

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/E2EMarkdownTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ const results = {
describe('markdown formatter', () => {
it('should format significant changes properly', () => {
const data = compareResults(results.main, results.delta, {commentLinking: 'ms'});
expect(buildMarkdown(data)).toMatchSnapshot();
expect(buildMarkdown(data, [])).toMatchSnapshot();
});
});

0 comments on commit eeb623d

Please sign in to comment.