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.
2 parents a84f55b + 8bc6e47 commit b092163Copy full SHA for b092163
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 person with the greatest age if someone is still living', () => {
+ test.skip('finds the oldest person if yearOfDeath field is undefined on a non-oldest person', () => {
25
const people = [
26
{
27
name: "Carly",
@@ -40,7 +40,7 @@ describe('findTheOldest', () => {
40
41
42
43
- test.skip('finds the person with the greatest age if the OLDEST is still living', () => {
+ test.skip('finds the oldest person if yearOfDeath field is undefined for the oldest person', () => {
44
45
46
0 commit comments