Skip to content

Commit 25442b7

Browse files
committed
test: use strict equality matcher for entry shape assertion
1 parent d98277c commit 25442b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/package/environments/base.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ describe("Base config", () => {
5959
test("keeps entry value shapes stable for TypeScript narrowing", () => {
6060
expect(typeof baseConfig.entry.application).toBe("string")
6161
expect(Array.isArray(baseConfig.entry.multi_entry)).toBe(true)
62-
expect(baseConfig.entry.multi_entry).toEqual(
62+
expect(baseConfig.entry.multi_entry).toStrictEqual(
6363
expect.arrayContaining([
6464
expect.any(String),
6565
expect.any(String)

0 commit comments

Comments
 (0)