8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import { Pokemon } from './pokemon';
|
|
|
|
describe('Pokemon', () => {
|
|
it('should create an instance', () => {
|
|
//expect(new Pokemon("1","test")).toBeTruthy();
|
|
});
|
|
});
|