Skip to content

Commit 9bb0810

Browse files
committed
[cubing/puzzles] Mark the Kilominx x2 test as slow.
1 parent 0140a3e commit 9bb0810

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cubing/puzzles/implementations/kilominx/kilominx.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { expect, test } from "bun:test";
2-
2+
import { SKIP_SLOW_TESTS } from "../../../../test/SKIP_SLOW_TESTS";
33
import { kilominx } from "./";
44

5-
test("Kilominx can apply x2", async () => {
5+
test.skipIf(SKIP_SLOW_TESTS)("Kilominx can apply x2", async () => {
66
const kpuzzle = await kilominx.kpuzzle();
77
expect(
88
kpuzzle.algToTransformation("x2").isIdentityTransformation(),

0 commit comments

Comments
 (0)