Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
Fixes for NCH tests in DOM.spec
Browse files Browse the repository at this point in the history
  • Loading branch information
WombatFromHell committed May 21, 2024
1 parent ef2eed1 commit ac6d17d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/e2e/DOM.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ test.describe("NewCommentHighlighter", () => {
url,
{
o: { append: true },
d: { new_comment_highlighter_last_id: { 42269502: 42270595 } },
d: { new_comment_highlighter_last_id: { "42269502": 42270595 } },
},
context
);
Expand All @@ -167,7 +167,7 @@ test.describe("NewCommentHighlighter - time validated highlighting", () => {
url,
{
o: { append: true },
d: { new_comment_highlighter_last_id: { 42269502: 42270597 }, last_highlight_time: Date.now() },
d: { new_comment_highlighter_last_id: { "42269502": 42270597 }, last_highlight_time: Date.now() },
},
context
);
Expand All @@ -180,7 +180,7 @@ test.describe("NewCommentHighlighter - time validated highlighting", () => {
url,
{
o: { append: true },
d: { new_comment_highlighter_last_id: { 42269502: 42270595 }, last_highlight_time: Date.now() },
d: { new_comment_highlighter_last_id: { "42269502": 42270595 }, last_highlight_time: Date.now() },
},
context
);
Expand All @@ -197,7 +197,7 @@ test.describe("NewCommentHighlighter - time validated highlighting", () => {
url,
{
o: { append: true },
d: { new_comment_highlighter_last_id: { 42269502: 42269502 }, last_highlight_time: staleTime },
d: { new_comment_highlighter_last_id: { "42269502": 42269502 }, last_highlight_time: staleTime },
},
context
);
Expand All @@ -211,7 +211,7 @@ test.describe("NewCommentHighlighter - time validated highlighting", () => {
url,
{
o: { append: true },
d: { new_comment_highlighter_last_id: { 42269502: 42270323 }, last_highlight_time: 0 },
d: { new_comment_highlighter_last_id: { "42269502": 42270323 }, last_highlight_time: 0 },
},
context
);
Expand Down

0 comments on commit ac6d17d

Please sign in to comment.