mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-18 19:28:35 -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
353 B
JavaScript
13 lines
353 B
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
|
|
const {SmokeRunner} = require('./../../dev-tools/smoke');
|
|
|
|
describe('SmokeRunner (slow)', async () => {
|
|
it('should run successfully', async () => {
|
|
const opts = {format: 'gen7doublescustomgame', maxGames: 1, prng: [1, 2, 3, 4]};
|
|
assert.strictEqual(await (new SmokeRunner(opts).run()), 0);
|
|
});
|
|
});
|