Skip to content

Commit 1cc8fc8

Browse files
committed
Add missing property.
1 parent c222dd2 commit 1cc8fc8

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

@shanzhai/output-zip-content-plugin/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const outputZipContentPlugin: Plugin<{
4141
),
4242
]);
4343
},
44+
writesToStores: [],
4445
},
4546
},
4647
};

@shanzhai/output-zip-content-plugin/unit.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ describe(`output-zip-content-plugin`, () => {
2121
).toEqual([]);
2222
});
2323

24+
it(`advertises the stores it will write to`, () => {
25+
expect(
26+
outputZipContentPlugin.triggers.outputZipContent.writesToStores
27+
).toEqual(jasmine.arrayWithExactContents([]));
28+
});
29+
2430
describe(`when zip content is deleted`, () => {
2531
let step: Step;
2632

0 commit comments

Comments
 (0)