Update some of the exercises

This commit is contained in:
Steve Kinney
2024-09-16 13:13:38 -06:00
parent a028678660
commit 1747f705a6
15 changed files with 1617 additions and 597 deletions

View File

@@ -0,0 +1,14 @@
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', () => {});
});