UNPKG

248 BJavaScriptView Raw
1/* eslint-env mocha */
2import {
3 ok
4} from 'assert'
5
6describe('accessing indexedDB', () => {
7 it('does not fail when deleting the temp directory on exit', () => {
8 const db = window.indexedDB.open('TestDatabase', 3)
9 ok(db != null)
10 })
11})