Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonAlling committed Jul 31, 2024
1 parent f736c8b commit 3ff028a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions __tests__/operations.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { operations } from "../src/run-time";
import {
ALWAYS,
DOMCONTENTLOADED,
Expand All @@ -8,6 +7,7 @@ import {
Operation,
OperationAndFailure,
operation,
run,
} from "../src/run-time/operations";

const mockConsole = {
Expand Down Expand Up @@ -108,7 +108,7 @@ const OPERATIONS_BLABLABLA = [

it("can run operations", () => {
document.documentElement.innerHTML = HTML_EXAMPLE;
operations.run({
run({
...PLAN,
operations: OPERATIONS,
});
Expand All @@ -117,7 +117,7 @@ it("can run operations", () => {

it("can log " + BLABLABLA, () => {
document.documentElement.innerHTML = HTML_WITH_BLABLABLA;
operations.run({
run({
...PLAN,
operations: OPERATIONS_BLABLABLA,
});
Expand All @@ -127,7 +127,7 @@ it("can log " + BLABLABLA, () => {

it("can handle an internal failure", () => {
document.documentElement.innerHTML = HTML_WITHOUT_BLABLABLA;
operations.run({
run({
...PLAN,
operations: OPERATIONS_BLABLABLA,
});
Expand Down

0 comments on commit 3ff028a

Please sign in to comment.