mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-03 20:18:08 -05:00
17 lines
453 B
JavaScript
17 lines
453 B
JavaScript
'use strict';
|
|
|
|
const assert = require('assert').strict;
|
|
|
|
const {ExhaustiveRunner} = require('../../../dist/sim/tools/exhaustive-runner');
|
|
|
|
describe('ExhaustiveRunner (slow)', async function () {
|
|
it('should run successfully', async function () {
|
|
this.timeout(0);
|
|
const opts = {prng: [1, 2, 3, 4]};
|
|
for (const format of ExhaustiveRunner.FORMATS) {
|
|
opts.format = format;
|
|
assert.equal(await (new ExhaustiveRunner(opts).run()), 0);
|
|
}
|
|
});
|
|
});
|