mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-21 23:15:44 -05:00
13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
|
|
const {MultiRunner} = require('./../../dev-tools/harness');
|
|
|
|
describe('MultiRunner', async () => {
|
|
it('should run successfully', async () => {
|
|
const opts = {totalGames: 1, prng: [1, 2, 3, 4]};
|
|
assert.strictEqual(await (new MultiRunner(opts).run()), 0);
|
|
});
|
|
});
|