File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -520,6 +520,11 @@ t.test('queries:', async t => {
520
520
t . equal ( aFoo . constructor , ( new Foo ( ) ) . constructor , 'should have the correct constructor' ) ;
521
521
t . end ( ) ;
522
522
} ) ;
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
+ } ) ;
523
528
t . test ( 'aborting queryOne' , async t => {
524
529
const ac0 = new AbortController ( ) ;
525
530
ac0 . abort ( new Error ( 'my reason 0' ) ) ;
@@ -550,6 +555,11 @@ t.test('queries:', async t => {
550
555
t . ok ( all_foos . filter ( x => x . id === aFooId ) . length === 1 , 'should return a foo ID' ) ;
551
556
t . end ( ) ;
552
557
} ) ;
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
+ } ) ;
553
563
await t . test ( 'aborting queryOneId' , async t => {
554
564
const ac1 = new AbortController ( ) ;
555
565
// the AWS SDk doesn't propagate the abort reason (but it would be nice if it did in the future)
You can’t perform that action at this time.
0 commit comments