8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 384f6f5 commit 366224b 8000 Copy full SHA for 366224b
12_findTheOldest/findTheOldest.spec.js
@@ -21,7 +21,7 @@ describe('findTheOldest', () => {
21
]
22
expect(findTheOldest(people).name).toBe('Ray');
23
});
24
- test.skip('finds the oldest person if someone is still living', () => {
+ test('finds the oldest person if someone is still living', () => {
25
const people = [
26
{
27
name: "Carly",
@@ -40,7 +40,7 @@ describe('findTheOldest', () => {
40
41
42
43
- test.skip('finds the oldest person if the OLDEST is still living', () => {
+ test('finds the oldest person if the OLDEST is still living', () => {
44
45
46
0 commit comments