Reenable ExhaustiveRunner test with workaround

This commit is contained in:
Kirk Scheibelhut 2019-11-15 14:45:21 -08:00
parent bb25774752
commit a4698a52cb
2 changed files with 2 additions and 1 deletions

View File

@ -71,6 +71,7 @@ export class ExhaustiveRunner {
async run() {
const dex = Dex.forFormat(this.format);
dex.loadData(); // FIXME: This is required for `dex.gen` to be set properly...
const seed = this.prng.seed;
const pools = this.createPools(dex);

View File

@ -5,7 +5,7 @@ const assert = require('assert');
const {ExhaustiveRunner} = require('../../../.sim-dist/tools/exhaustive-runner');
describe('ExhaustiveRunner (slow)', async function () {
it.skip('should run successfully', async function () {
it('should run successfully', async function () {
this.timeout(0);
const opts = {prng: [1, 2, 3, 4]};
for (let format of ExhaustiveRunner.FORMATS) {