Merge 5ba5492fea into 7769c06393
commit
8cccffba1c
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/account";
|
||||
|
||||
|
||||
//FROM: - src/account.ts
|
||||
describe.skip("Account", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/battle-scene";
|
||||
|
||||
|
||||
//FROM: - src/battle-scene.ts
|
||||
describe.skip("BattleScene", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/battle";
|
||||
|
||||
|
||||
//FROM: - src/battle.ts
|
||||
describe.skip("Battle", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/configs/pad_dualshock";
|
||||
|
||||
|
||||
//FROM: - src/configs/pad_dualshock.ts
|
||||
describe.skip("PadDualshock", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/configs/pad_generic";
|
||||
|
||||
|
||||
//FROM: - src/configs/pad_generic.ts
|
||||
describe.skip("PadGeneric", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/configs/pad_unlicensedSNES";
|
||||
|
||||
|
||||
//FROM: - src/configs/pad_unlicensedSNES.ts
|
||||
describe.skip("PadUnlicensedSNES", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/configs/pad_xbox360";
|
||||
|
||||
|
||||
//FROM: - src/configs/pad_xbox360.ts
|
||||
describe.skip("PadXbox360", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/ability";
|
||||
|
||||
|
||||
//FROM: - src/data/ability.ts
|
||||
describe.skip("Ability", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/api";
|
||||
|
||||
|
||||
//FROM: - src/data/api.ts
|
||||
describe.skip("Api", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/arena-tag";
|
||||
|
||||
|
||||
//FROM: - src/data/arena-tag.ts
|
||||
describe.skip("ArenaTag", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/battle-anims";
|
||||
|
||||
|
||||
//FROM: - src/data/battle-anims.ts
|
||||
describe.skip("BattleAnims", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/battle-stat";
|
||||
|
||||
|
||||
//FROM: - src/data/battle-stat.ts
|
||||
describe.skip("BattleStat", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/battler-tags";
|
||||
|
||||
|
||||
//FROM: - src/data/battler-tags.ts
|
||||
describe.skip("BattlerTags", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/berry";
|
||||
|
||||
|
||||
//FROM: - src/data/berry.ts
|
||||
describe.skip("Berry", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/biomes";
|
||||
|
||||
|
||||
//FROM: - src/data/biomes.ts
|
||||
describe.skip("Biomes", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/daily-run";
|
||||
|
||||
|
||||
//FROM: - src/data/daily-run.ts
|
||||
describe.skip("DailyRun", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/dialogue";
|
||||
|
||||
|
||||
//FROM: - src/data/dialogue.ts
|
||||
describe.skip("Dialogue", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/egg-moves";
|
||||
|
||||
|
||||
//FROM: - src/data/egg-moves.ts
|
||||
describe.skip("EggMoves", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/egg";
|
||||
|
||||
|
||||
//FROM: - src/data/egg.ts
|
||||
describe.skip("Egg", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/abilities";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/abilities.ts
|
||||
describe.skip("Abilities", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/arena-tag-type";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/arena-tag-type.ts
|
||||
describe.skip("ArenaTagType", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/battler-tag-type";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/battler-tag-type.ts
|
||||
describe.skip("BattlerTagType", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/biome";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/biome.ts
|
||||
describe.skip("Biome", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/egg-type";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/egg-type.ts
|
||||
describe.skip("EggType", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/moves";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/moves.ts
|
||||
describe.skip("Moves", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/party-member-strength";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/party-member-strength.ts
|
||||
describe.skip("PartyMemberStrength", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/species";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/species.ts
|
||||
describe.skip("Species", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/time-of-day";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/time-of-day.ts
|
||||
describe.skip("TimeOfDay", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/enums/trainer-type";
|
||||
|
||||
|
||||
//FROM: - src/data/enums/trainer-type.ts
|
||||
describe.skip("TrainerType", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/exp";
|
||||
|
||||
|
||||
//FROM: - src/data/exp.ts
|
||||
describe.skip("Exp", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/gender";
|
||||
|
||||
|
||||
//FROM: - src/data/gender.ts
|
||||
describe.skip("Gender", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/move";
|
||||
|
||||
|
||||
//FROM: - src/data/move.ts
|
||||
describe.skip("Move", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/nature";
|
||||
|
||||
|
||||
//FROM: - src/data/nature.ts
|
||||
describe.skip("Nature", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/pokeball";
|
||||
|
||||
|
||||
//FROM: - src/data/pokeball.ts
|
||||
describe.skip("Pokeball", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/pokemon-evolutions";
|
||||
|
||||
|
||||
//FROM: - src/data/pokemon-evolutions.ts
|
||||
describe.skip("PokemonEvolutions", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/pokemon-forms";
|
||||
|
||||
|
||||
//FROM: - src/data/pokemon-forms.ts
|
||||
describe.skip("PokemonForms", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/pokemon-level-moves";
|
||||
|
||||
|
||||
//FROM: - src/data/pokemon-level-moves.ts
|
||||
describe.skip("PokemonLevelMoves", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/pokemon-species";
|
||||
|
||||
|
||||
//FROM: - src/data/pokemon-species.ts
|
||||
describe.skip("PokemonSpecies", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/pokemon-stat";
|
||||
|
||||
|
||||
//FROM: - src/data/pokemon-stat.ts
|
||||
describe.skip("PokemonStat", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/splash-messages";
|
||||
|
||||
|
||||
//FROM: - src/data/splash-messages.ts
|
||||
describe.skip("SplashMessages", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/status-effect";
|
||||
|
||||
|
||||
//FROM: - src/data/status-effect.ts
|
||||
describe.skip("StatusEffect", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/temp-battle-stat";
|
||||
|
||||
|
||||
//FROM: - src/data/temp-battle-stat.ts
|
||||
describe.skip("TempBattleStat", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/terrain";
|
||||
|
||||
|
||||
//FROM: - src/data/terrain.ts
|
||||
describe.skip("Terrain", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/tms";
|
||||
|
||||
|
||||
//FROM: - src/data/tms.ts
|
||||
describe.skip("Tms", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/trainer-config";
|
||||
|
||||
|
||||
//FROM: - src/data/trainer-config.ts
|
||||
describe.skip("TrainerConfig", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/trainer-names";
|
||||
|
||||
|
||||
//FROM: - src/data/trainer-names.ts
|
||||
describe.skip("TrainerNames", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/type";
|
||||
|
||||
|
||||
//FROM: - src/data/type.ts
|
||||
describe.skip("Type", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/variant";
|
||||
|
||||
|
||||
//FROM: - src/data/variant.ts
|
||||
describe.skip("Variant", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/data/weather";
|
||||
|
||||
|
||||
//FROM: - src/data/weather.ts
|
||||
describe.skip("Weather", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/debug";
|
||||
|
||||
|
||||
//FROM: - src/debug.js
|
||||
describe.skip("Debug", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/egg-hatch-phase";
|
||||
|
||||
|
||||
//FROM: - src/egg-hatch-phase.ts
|
||||
describe.skip("EggHatchPhase", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/enums/battle-spec";
|
||||
|
||||
|
||||
//FROM: - src/enums/battle-spec.ts
|
||||
describe.skip("BattleSpec", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/enums/buttons";
|
||||
|
||||
|
||||
//FROM: - src/enums/buttons.ts
|
||||
describe.skip("Buttons", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/enums/ui-theme";
|
||||
|
||||
|
||||
//FROM: - src/enums/ui-theme.ts
|
||||
describe.skip("UiTheme", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/evolution-phase";
|
||||
|
||||
|
||||
//FROM: - src/evolution-phase.ts
|
||||
describe.skip("EvolutionPhase", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/field/anims";
|
||||
|
||||
|
||||
//FROM: - src/field/anims.ts
|
||||
describe.skip("Anims", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/field/arena";
|
||||
|
||||
|
||||
//FROM: - src/field/arena.ts
|
||||
describe.skip("Arena", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/field/damage-number-handler";
|
||||
|
||||
|
||||
//FROM: - src/field/damage-number-handler.ts
|
||||
describe.skip("DamageNumberHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/field/pokemon-sprite-sparkle-handler";
|
||||
|
||||
|
||||
//FROM: - src/field/pokemon-sprite-sparkle-handler.ts
|
||||
describe.skip("PokemonSpriteSparkleHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/field/pokemon";
|
||||
|
||||
|
||||
//FROM: - src/field/pokemon.ts
|
||||
describe.skip("Pokemon", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/field/trainer";
|
||||
|
||||
|
||||
//FROM: - src/field/trainer.ts
|
||||
describe.skip("Trainer", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/form-change-phase";
|
||||
|
||||
|
||||
//FROM: - src/form-change-phase.ts
|
||||
describe.skip("FormChangePhase", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/game-mode";
|
||||
|
||||
|
||||
//FROM: - src/game-mode.ts
|
||||
describe.skip("GameMode", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/inputs-controller";
|
||||
|
||||
|
||||
//FROM: - src/inputs-controller.ts
|
||||
describe.skip("InputsController", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/loading-scene";
|
||||
|
||||
|
||||
//FROM: - src/loading-scene.ts
|
||||
describe.skip("LoadingScene", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/ability";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/ability.ts
|
||||
describe.skip("Ability", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/battle";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/battle.ts
|
||||
describe.skip("Battle", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/command-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/command-ui-handler.ts
|
||||
describe.skip("CommandUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/config";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/config.ts
|
||||
describe.skip("Config", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/fight-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/fight-ui-handler.ts
|
||||
describe.skip("FightUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/menu-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/menu-ui-handler.ts
|
||||
describe.skip("MenuUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/menu";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/menu.ts
|
||||
describe.skip("Menu", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/move";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/move.ts
|
||||
describe.skip("Move", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/pokeball";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/pokeball.ts
|
||||
describe.skip("Pokeball", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/pokemon-stat";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/pokemon-stat.ts
|
||||
describe.skip("PokemonStat", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/pokemon";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/pokemon.ts
|
||||
describe.skip("Pokemon", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/starter-select-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/starter-select-ui-handler.ts
|
||||
describe.skip("StarterSelectUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/de/tutorial";
|
||||
|
||||
|
||||
//FROM: - src/locales/de/tutorial.ts
|
||||
describe.skip("Tutorial", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/ability";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/ability.ts
|
||||
describe.skip("Ability", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/battle";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/battle.ts
|
||||
describe.skip("Battle", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/command-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/command-ui-handler.ts
|
||||
describe.skip("CommandUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/config";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/config.ts
|
||||
describe.skip("Config", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/fight-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/fight-ui-handler.ts
|
||||
describe.skip("FightUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/menu-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/menu-ui-handler.ts
|
||||
describe.skip("MenuUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/menu";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/menu.ts
|
||||
describe.skip("Menu", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/move";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/move.ts
|
||||
describe.skip("Move", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/pokeball";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/pokeball.ts
|
||||
describe.skip("Pokeball", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/pokemon-stat";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/pokemon-stat.ts
|
||||
describe.skip("PokemonStat", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/pokemon";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/pokemon.ts
|
||||
describe.skip("Pokemon", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/starter-select-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/starter-select-ui-handler.ts
|
||||
describe.skip("StarterSelectUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/en/tutorial";
|
||||
|
||||
|
||||
//FROM: - src/locales/en/tutorial.ts
|
||||
describe.skip("Tutorial", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/ability";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/ability.ts
|
||||
describe.skip("Ability", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/battle";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/battle.ts
|
||||
describe.skip("Battle", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/command-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/command-ui-handler.ts
|
||||
describe.skip("CommandUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/config";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/config.ts
|
||||
describe.skip("Config", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/fight-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/fight-ui-handler.ts
|
||||
describe.skip("FightUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/menu-ui-handler";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/menu-ui-handler.ts
|
||||
describe.skip("MenuUiHandler", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/menu";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/menu.ts
|
||||
describe.skip("Menu", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/move";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/move.ts
|
||||
describe.skip("Move", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
import { expect, describe, it } from "vitest";
|
||||
import Phaser from "phaser";
|
||||
import { /*modules to test*/ } from "#app/locales/es/pokeball";
|
||||
|
||||
|
||||
//FROM: - src/locales/es/pokeball.ts
|
||||
describe.skip("Pokeball", () => {
|
||||
// Your code here
|
||||
});
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue