mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-18 11:14:39 -05:00
- Tests flagged with (slow) will no longer be run in `npm test`. - Travis CI will now run `fulltest`. - Unskip slow dev-tools tests and flag as such.
13 lines
324 B
JavaScript
13 lines
324 B
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
|
|
const {MultiRunner} = require('./../../dev-tools/harness');
|
|
|
|
describe('MultiRunner (slow)', async () => {
|
|
it('should run successfully', async () => {
|
|
const opts = {totalGames: 1, prng: [1, 2, 3, 4]};
|
|
assert.strictEqual(await (new MultiRunner(opts).run()), 0);
|
|
});
|
|
});
|