character.spec.ts 166 Bytes
import { Character } from './character';

describe('Character', () => {
  it('should create an instance', () => {
    expect(new Character()).toBeTruthy();
  });
});