You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since t.end() is not required when t.plan() is called, the following test should be excluded by test-ended.
test('Mapper.insert()',t=>{t.plan(5);t.throws(()=>Mapper.insert(),TypeError,'throws `TypeError` synchronously with no arguments');t.resolvesTo(Mapper.insert(null),null,'resolves `null` to `null`');t.resolvesToDeep(Mapper.insert([]),[],'resolves empty array to empty array');t.resolvesToDeep(Mapper.insert([null,null]),[],'resolves array of `null` values to an empty array');t.resolvesToDeep(Mapper.insert(null,null),[],'resolves multiple `null` value arguments to an empty array');});
resolvesToDeep is a custom test I've monkey patched into tape.
The text was updated successfully, but these errors were encountered:
Since
t.end()
is not required whent.plan()
is called, the following test should be excluded bytest-ended
.resolvesToDeep
is a custom test I've monkey patched into tape.The text was updated successfully, but these errors were encountered: