15 lines
409 B
JavaScript
15 lines
409 B
JavaScript
import { describe, it, expect } from 'vitest';
|
|
import { Character } from './character.js';
|
|
import { Person } from './person.js';
|
|
|
|
describe('Character', () => {
|
|
it.todo(
|
|
'should create a character with a first name, last name, and role',
|
|
() => {},
|
|
);
|
|
|
|
it.todo('should allow you to increase the level', () => {});
|
|
|
|
it.todo('should update the last modified date when leveling up', () => {});
|
|
});
|