You've already forked FullScreenPokemon
mirror of
https://github.com/FullScreenShenanigans/FullScreenPokemon.git
synced 2026-04-28 12:58:40 -07:00
5f04dbc243
Tests will now run against the compiled .js in /src. No more waiting for full compilation runs to test.
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import { FullScreenPokemon } from "../../src/FullScreenPokemon";
|
|
|
|
export const mocks = {
|
|
mockFullScreenPokemon: (): FullScreenPokemon => {
|
|
return new FullScreenPokemon({
|
|
width: 400,
|
|
height: 400
|
|
})
|
|
}
|
|
};
|