From e39b072d2bf197fb746fd3668ac120e31202a35f Mon Sep 17 00:00:00 2001 From: Scott Bedard Date: Sun, 6 Feb 2022 15:03:52 -0600 Subject: [PATCH] fix focused test --- tests/puzzles/cube.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/puzzles/cube.spec.ts b/tests/puzzles/cube.spec.ts index 317fcd3..a200a69 100644 --- a/tests/puzzles/cube.spec.ts +++ b/tests/puzzles/cube.spec.ts @@ -354,7 +354,7 @@ describe('Cube', () => { expect(cube.test()).toBe(true) }) - it.only('returns the reversed algorithn', () => { + it('returns the reversed algorithn', () => { const cube = new Cube({ size: 3 }) expect(cube.unturn('R U R- U-')).toBe('U R U- R-')