Skip to content

Commit

Permalink
feat: outline storage and upload tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexforsyth committed Oct 2, 2020
1 parent e9b0cad commit ac3b0e5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions experimental/storage/test/storage.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { Storage } from "../src/index";

describe(Storage.name, () => {
it("Upload function defined on the storage object", () => {
expect(new Storage().upload).toBeDefined();
});
});
7 changes: 7 additions & 0 deletions experimental/storage/test/upload/upload.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { Upload } from "../../dist/cjs//upload/Upload";

describe(Upload.name, () => {
it("upload tests TODO", () => {
expect(1).toEqual(1);
});
});

0 comments on commit ac3b0e5

Please sign in to comment.