Remove test skips for solutions

This commit is contained in:
thatblindgeye
2023-02-01 18:58:58 -05:00
parent 2ec0f4344d
commit e416717ba9
13 changed files with 80 additions and 80 deletions
@@ -21,7 +21,7 @@ describe('findTheOldest', () => {
];
expect(findTheOldest(people).name).toBe('Ray');
});
test.skip('finds the oldest person if someone is still living', () => {
test('finds the oldest person if someone is still living', () => {
const people = [
{
name: 'Carly',
@@ -40,7 +40,7 @@ describe('findTheOldest', () => {
];
expect(findTheOldest(people).name).toBe('Ray');
});
test.skip('finds the oldest person if the OLDEST is still living', () => {
test('finds the oldest person if the OLDEST is still living', () => {
const people = [
{
name: 'Carly',