We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
x2
1 parent 0140a3e commit 9bb0810Copy full SHA for 9bb0810
1 file changed
src/cubing/puzzles/implementations/kilominx/kilominx.test.ts
@@ -1,8 +1,8 @@
1
import { expect, test } from "bun:test";
2
-
+import { SKIP_SLOW_TESTS } from "../../../../test/SKIP_SLOW_TESTS";
3
import { kilominx } from "./";
4
5
-test("Kilominx can apply x2", async () => {
+test.skipIf(SKIP_SLOW_TESTS)("Kilominx can apply x2", async () => {
6
const kpuzzle = await kilominx.kpuzzle();
7
expect(
8
kpuzzle.algToTransformation("x2").isIdentityTransformation(),
0 commit comments