mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
cf06ff3b8d
* moving enums
36 lines
943 B
TypeScript
36 lines
943 B
TypeScript
import { describe, expect, it} from "vitest";
|
|
import {initStatsKeys} from "#app/ui/game-stats-ui-handler";
|
|
|
|
async function importModule() {
|
|
try {
|
|
initStatsKeys();
|
|
const { PokemonMove } = await import("#app/field/pokemon");
|
|
const { Species } = await import("#enums");
|
|
return {
|
|
PokemonMove,
|
|
Species,
|
|
};
|
|
// Dynamically import the module
|
|
} catch (error) {
|
|
// Log the error stack trace
|
|
console.error("Error during import:", error.stack);
|
|
// Rethrow the error to ensure the test fails
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
describe("tests to debug the import, with trace", () => {
|
|
it("import PokemonMove module", async () => {
|
|
const module = await importModule();
|
|
// Example assertion
|
|
expect(module.PokemonMove).toBeDefined();
|
|
});
|
|
|
|
it("import Species module", async () => {
|
|
const module = await importModule();
|
|
// Example assertion
|
|
expect(module.Species).toBeDefined();
|
|
});
|
|
});
|
|
|