Skip to content

Commit aff44a4

Browse files
committed
test(storage, e2e): StorageTask tests require seeding
this was removed because typically it runs after another test already seeded, but if you run just tests in here, it requires seed
1 parent ccb09a9 commit aff44a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/storage/e2e/StorageTask.e2e.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*/
1717

18-
const { PATH, WRITE_ONLY_NAME } = require('./helpers');
18+
const { PATH, seed, WRITE_ONLY_NAME } = require('./helpers');
1919

2020
function snapshotProperties(snapshot) {
2121
snapshot.should.have.property('state');
@@ -27,9 +27,9 @@ function snapshotProperties(snapshot) {
2727
}
2828

2929
describe('storage() -> StorageTask', function () {
30-
// before(async function () {
31-
// await seed(PATH);
32-
// });
30+
before(async function () {
31+
await seed(PATH);
32+
});
3333

3434
describe('writeToFile()', function () {
3535
// TODO - followup - the storage emulator currently inverts not-found / permission error conditions
File renamed without changes.

0 commit comments

Comments
 (0)