File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -248,6 +248,7 @@ describe('$Refs object', function () {
248248 . then ( function ( $refs ) {
249249 $refs . get ( 'definitions/name.yaml#/' ) ;
250250 } )
251+ . then ( helper . shouldNotGetCalled )
251252 . catch ( function ( err ) {
252253 expect ( err ) . to . be . an . instanceOf ( Error ) ;
253254 expect ( err . message ) . to . equal (
@@ -276,6 +277,7 @@ describe('$Refs object', function () {
276277 . then ( function ( $refs ) {
277278 $refs . get ( 'foo-bar.yaml#/some/value' ) ;
278279 } )
280+ . then ( helper . shouldNotGetCalled )
279281 . catch ( function ( err ) {
280282 expect ( err ) . to . be . an . instanceOf ( Error ) ;
281283 expect ( err . message ) . to . equal (
@@ -291,6 +293,7 @@ describe('$Refs object', function () {
291293 . then ( function ( $refs ) {
292294 $refs . get ( 'external.yaml#/foo/bar' ) ;
293295 } )
296+ . then ( helper . shouldNotGetCalled )
294297 . catch ( function ( err ) {
295298 expect ( err ) . to . be . an . instanceOf ( Error ) ;
296299 expect ( err . message ) . to . equal (
@@ -336,6 +339,7 @@ describe('$Refs object', function () {
336339 . then ( function ( $refs ) {
337340 $refs . set ( 'foo-bar.yaml#/some/path' , 'some value' ) ;
338341 } )
342+ . then ( helper . shouldNotGetCalled )
339343 . catch ( function ( err ) {
340344 expect ( err ) . to . be . an . instanceOf ( Error ) ;
341345 expect ( err . message ) . to . equal (
You can’t perform that action at this time.
0 commit comments