Skip to content

Commit

Permalink
Out of date test condition
Browse files Browse the repository at this point in the history
  • Loading branch information
eaton committed Apr 29, 2023
1 parent cd93600 commit 8ea64c9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/tools/find-property-value.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ test('simple paths', t => {
t.is(findPropertyValue(obj, 'arr[0]'), 'first');
t.is(findPropertyValue(obj, 'str'), 'string');
t.is(findPropertyValue(obj, 'null'), undefined);
t.is(findPropertyValue(obj, 'null', 'default'), 'default');
t.is(findPropertyValue(obj, 'str', 'default'), 'string');
t.is(findPropertyValue(obj, 'nested.deeply.leaf'), 'value');
});

Expand Down

0 comments on commit 8ea64c9

Please sign in to comment.