Skip heavy CPU test by default.

This commit is contained in:
Will Scullin 2019-11-23 14:27:38 -08:00
parent ff98e1916a
commit df5cea2482
No known key found for this signature in database
GPG Key ID: 9092A5C0A673416B
2 changed files with 2 additions and 1 deletions

View File

@ -40,6 +40,7 @@
}, {
"files": [ "test/*"],
"env": {
"node": true,
"jest": true
}
}, {

View File

@ -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;