Skip to content

Commit d7cb6cf

Browse files
committed
Cover some missed branches.
1 parent e8f4a83 commit d7cb6cf

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/queries.js

+10
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,11 @@ t.test('queries:', async t => {
520520
t.equal(aFoo.constructor, (new Foo()).constructor, 'should have the correct constructor');
521521
t.end();
522522
});
523+
t.test('queryOne noneexistent', async t => {
524+
const noFoo = await Foo.queryOne({ type: 'doesnotexist' });
525+
t.equal(noFoo, null, 'should return null');
526+
t.end();
527+
});
523528
t.test('aborting queryOne', async t => {
524529
const ac0 = new AbortController();
525530
ac0.abort(new Error('my reason 0'));
@@ -550,6 +555,11 @@ t.test('queries:', async t => {
550555
t.ok(all_foos.filter(x => x.id === aFooId).length === 1, 'should return a foo ID');
551556
t.end();
552557
});
558+
t.test('queryOneId nonexistent', async t => {
559+
const noFooId = await Foo.queryOneId({ type: 'nonexistent' });
560+
t.equal(noFooId, null, 'should return null');
561+
t.end();
562+
});
553563
await t.test('aborting queryOneId', async t => {
554564
const ac1 = new AbortController();
555565
// the AWS SDk doesn't propagate the abort reason (but it would be nice if it did in the future)

0 commit comments

Comments
 (0)