mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-07-31 07:46:47 -05:00
Reenable ExhaustiveRunner test with workaround
This commit is contained in:
parent
bb25774752
commit
a4698a52cb
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user