Skip to content

Commit b8e4f36

Browse files
authored
test: use strictEqual in plugin-kit where possible (#278)
1 parent 43d4f78 commit b8e4f36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/plugin-kit/tests/source-code.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1752,7 +1752,7 @@ describe("source-code", () => {
17521752
});
17531753

17541754
it("should handle empty text", () => {
1755-
assert.deepStrictEqual(
1755+
assert.strictEqual(
17561756
new TextSourceCodeBase({
17571757
ast: {
17581758
loc: {
@@ -1770,7 +1770,7 @@ describe("source-code", () => {
17701770
}).getIndexFromLoc({ line: 1, column: 0 }),
17711771
0,
17721772
);
1773-
assert.deepStrictEqual(
1773+
assert.strictEqual(
17741774
new TextSourceCodeBase({
17751775
ast: {
17761776
loc: {
@@ -1788,7 +1788,7 @@ describe("source-code", () => {
17881788
}).getIndexFromLoc({ line: 0, column: 1 }),
17891789
0,
17901790
);
1791-
assert.deepStrictEqual(
1791+
assert.strictEqual(
17921792
new TextSourceCodeBase({
17931793
ast: {
17941794
loc: {
@@ -1806,7 +1806,7 @@ describe("source-code", () => {
18061806
}).getIndexFromLoc({ line: 0, column: 0 }),
18071807
0,
18081808
);
1809-
assert.deepStrictEqual(
1809+
assert.strictEqual(
18101810
new TextSourceCodeBase({
18111811
ast: {
18121812
loc: {

0 commit comments

Comments
 (0)