File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
integration-tests/js-compute/fixtures/object-store/bin Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ routes.set('/', () => {
82
82
if ( error ) { return error }
83
83
return pass ( )
84
84
} ) ;
85
- // routes.set("/object-store/constructor/missing-store", async () => {
86
- // let error = assertThrows(() => {
87
- // new ObjectStore('missing')
88
- // }, Error, `ObjectStore constructor: No ObjectStore named 'missing' exists`)
89
- // if (error) { return error }
90
- // return pass()
91
- // });
85
+ routes . set ( "/object-store/constructor/missing-store" , async ( ) => {
86
+ let error = assertThrows ( ( ) => {
87
+ new ObjectStore ( 'missing' )
88
+ } , Error , `ObjectStore constructor: No ObjectStore named 'missing' exists` )
89
+ if ( error ) { return error }
90
+ return pass ( )
91
+ } ) ;
92
92
routes . set ( "/object-store/constructor/invalid-name" , async ( ) => {
93
93
// control Characters (\\u0000-\\u001F) are not allowed
94
94
const controlCharacters = [
You can’t perform that action at this time.
0 commit comments