mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-25 15:40:31 -05:00
13 lines
346 B
JavaScript
13 lines
346 B
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
|
|
const {SmokeRunner} = require('./../../dev-tools/smoke');
|
|
|
|
describe('SmokeRunner', 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);
|
|
});
|
|
});
|