Update some of the exercises
This commit is contained in:
14
examples/characters/src/characrer.test.js
Normal file
14
examples/characters/src/characrer.test.js
Normal 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', () => {});
|
||||
});
|
||||
Reference in New Issue
Block a user