Skip to content

Commit 6c351a0

Browse files
committed
Restore index.js
1 parent 1912b10 commit 6c351a0

File tree

1 file changed

+7
-7
lines changed
  • integration-tests/js-compute/fixtures/object-store/bin

1 file changed

+7
-7
lines changed

integration-tests/js-compute/fixtures/object-store/bin/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ routes.set('/', () => {
8282
if (error) { return error }
8383
return pass()
8484
});
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+
});
9292
routes.set("/object-store/constructor/invalid-name", async () => {
9393
// control Characters (\\u0000-\\u001F) are not allowed
9494
const controlCharacters = [

0 commit comments

Comments
 (0)