pokemon-showdown/test/sim/moves/thunderwave.js
André Bastos Dias 7d92a7e14e
Some checks failed
Node.js CI / build (18.x) (push) Has been cancelled
Normalize test code formatting (#12029)
2026-05-11 21:13:30 -05:00

23 lines
557 B
JavaScript

'use strict';
const assert = require('./../../assert');
const common = require('./../../common');
let battle;
describe('Thunder Wave', () => {
afterEach(() => {
battle.destroy();
});
it('should not ignore natural type immunities', () => {
battle = common.createBattle([[
{ species: "Jolteon", ability: 'quickfeet', moves: ['thunderwave'] },
], [
{ species: "Hippowdon", ability: 'sandforce', moves: ['slackoff'] },
]]);
battle.makeChoices('move thunderwave', 'move slackoff');
assert.equal(battle.p2.active[0].status, '');
});
});