kura
Version:
The FileSystem API abstraction library.
15 lines (13 loc) • 357 B
text/typescript
import "../polyfill";
import "fake-indexeddb/auto";
import { testAll } from "./filesystem";
import { IdbLocalFileSystemAsync } from "../idb/IdbLocalFileSystemAsync";
const factory = new IdbLocalFileSystemAsync("web-file-system-test", {
index: true,
contentsCache: false,
indexOptions: {
noCache: true,
},
verbose: true,
});
testAll(factory);