We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c222dd2 commit 1cc8fc8Copy full SHA for 1cc8fc8
@shanzhai/output-zip-content-plugin/index.ts
@@ -41,6 +41,7 @@ const outputZipContentPlugin: Plugin<{
41
),
42
]);
43
},
44
+ writesToStores: [],
45
46
47
};
@shanzhai/output-zip-content-plugin/unit.ts
@@ -21,6 +21,12 @@ describe(`output-zip-content-plugin`, () => {
21
).toEqual([]);
22
});
23
24
+ it(`advertises the stores it will write to`, () => {
25
+ expect(
26
+ outputZipContentPlugin.triggers.outputZipContent.writesToStores
27
+ ).toEqual(jasmine.arrayWithExactContents([]));
28
+ });
29
+
30
describe(`when zip content is deleted`, () => {
31
let step: Step;
32
0 commit comments