@revopush/code-push-cli 0.0.7 → 0.0.8-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -196,6 +196,15 @@ describe("Management SDK", () => {
196
196
  }, rejectHandler);
197
197
  });
198
198
 
199
+ it("getBaseBundle handles JSON response", (done: Mocha.Done) => {
200
+ mockReturn(JSON.stringify({ basebundle: { bundleBlobUrl: "https://test.test/release.zip" } }), 200, {});
201
+
202
+ manager.getBaseRelease("appName", "deploymentName", "1.2.3").done((obj: any) => {
203
+ assert.ok(obj);
204
+ done();
205
+ }, rejectHandler);
206
+ });
207
+
199
208
  it("getDeployments handles JSON response", (done: Mocha.Done) => {
200
209
  mockReturn(JSON.stringify({ deployments: [] }), 200, {});
201
210