Skip to content

Commit

Permalink
update integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas-codecov committed Dec 14, 2023
1 parent 4f9e05b commit 92ae7b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ describe("Generating rollup stats", () => {
});

it("sets the correct bundle name", () => {
expect(stats.bundleName).toStrictEqual("rollup-test");
expect(stats.bundleName).toStrictEqual("rollup-test-es");
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ describe("Generating vite stats", () => {
});

it("sets the correct bundle name", () => {
expect(stats.bundleName).toStrictEqual("vite-test");
expect(stats.bundleName).toStrictEqual("vite-test-cjs");
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ describe("Generating webpack stats", () => {
});

it("sets the correct bundle name", () => {
expect(stats.bundleName).toStrictEqual("webpack-test");
expect(stats.bundleName).toStrictEqual("webpack-test-array-push");
});
});

0 comments on commit 92ae7b4

Please sign in to comment.