mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-18 03:01:00 -05:00
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require('../../assert');
|
|
const common = require('../../common');
|
|
|
|
let battle;
|
|
|
|
describe('Team Preview', function () {
|
|
afterEach(function () {
|
|
battle.destroy();
|
|
});
|
|
|
|
it('should hide formes of certain Pokemon', function () {
|
|
battle = common.createBattle('gen8anythinggoes', [[
|
|
{species: 'Arceus-Steel', ability: 'multitype', item: 'steelplate', moves: ['sleeptalk']},
|
|
{species: 'Pumpkaboo-Super', ability: 'pickup', moves: ['sleeptalk']},
|
|
{species: 'Gourgeist-Small', ability: 'pickup', moves: ['sleeptalk']},
|
|
], [
|
|
{species: 'Silvally', ability: 'rkssystem', moves: ['sleeptalk']},
|
|
{species: 'Urshifu-Rapid-Strike', ability: 'unseenfist', moves: ['sleeptalk']},
|
|
{species: 'Zacian', ability: 'intrepidsword', item: 'rustedsword', moves: ['sleeptalk']},
|
|
]]);
|
|
for (const line of battle.log) {
|
|
if (line.startsWith('|poke|')) {
|
|
const details = line.split('|')[3];
|
|
assert(details.match(/(Arceus|Pumpkaboo|Gourgeist|Silvally|Urshifu|Zacian)-\*/), `Forme was not hidden; preview details: ${details}`);
|
|
}
|
|
}
|
|
});
|
|
|
|
it('should not hide formes of hacked Zacian/Zamazenta formes', function () {
|
|
battle = common.createBattle([[
|
|
{species: 'Zacian-Crowned', moves: ['sleeptalk']},
|
|
], [
|
|
{species: 'Zamazenta-Crowned', moves: ['sleeptalk']},
|
|
]]);
|
|
for (const line of battle.log) {
|
|
if (line.startsWith('|poke|')) {
|
|
const details = line.split('|')[3];
|
|
assert.false(details.includes('-*'), `Forme was hidden; preview details: ${details}`);
|
|
}
|
|
}
|
|
});
|
|
});
|