From df5cea2482abf7c7210144f941dc0abb229caaf0 Mon Sep 17 00:00:00 2001 From: Will Scullin Date: Sat, 23 Nov 2019 14:27:38 -0800 Subject: [PATCH] Skip heavy CPU test by default. --- .eslintrc.json | 1 + test/cpu.spec.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index e433d72..d1f401c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -40,6 +40,7 @@ }, { "files": [ "test/*"], "env": { + "node": true, "jest": true } }, { diff --git a/test/cpu.spec.js b/test/cpu.spec.js index ac1afd2..a259a56 100644 --- a/test/cpu.spec.js +++ b/test/cpu.spec.js @@ -5,7 +5,7 @@ import Test65C02 from './roms/65C02test'; import { toHex } from '../js/util'; -describe('CPU', function () { +describe.skip('CPU', function () { var cpu; var lastPC = 0; var done = false;