Add examples

This commit is contained in:
Steve Kinney
2024-09-24 15:56:02 -06:00
parent 410a6c72ff
commit 61485cc73c
8 changed files with 150 additions and 24 deletions

View File

@@ -0,0 +1,9 @@
import { describe, expect, it } from 'vitest';
import { Person } from './person';
describe('Person', () => {
it('should be an instance of a Person', () => {
const person = new Person('John', 'Doe', '2000-01-01');
expect(person).toBeInstanceOf(Person);
});
});