'use strict'; const { Core } = require('./core.js'); const { DAT } = require('./instruction.js'); const CORESIZE = 8000; test('DAT does nothing and kills the program', () => { const core = new Core(CORESIZE); const pc = 0; const ins = core.data[pc]; expect(DAT(core, pc, ins)).toEqual([]); });