Files
Josh Goldberg 5f04dbc243 Brought in gulp-shenanigans with source tests (#317)
Tests will now run against the compiled .js in /src. No more waiting for
full compilation runs to test.
2016-09-24 15:55:37 -07:00

11 lines
250 B
TypeScript

import { FullScreenPokemon } from "../../src/FullScreenPokemon";
export const mocks = {
mockFullScreenPokemon: (): FullScreenPokemon => {
return new FullScreenPokemon({
width: 400,
height: 400
})
}
};