UNPKG

iotsuite-cli

Version:

Command Line Interface for deploying pre-configured IoT solutions through Azure

19 lines 737 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const deploymentmanager_1 = require("./deploymentmanager"); const solutionType = 'RemoteMonitoring'; describe('Template deployment through DeploymentManager', () => { let deploymentManager; beforeAll(() => { const options = {}; deploymentManager = new deploymentmanager_1.DeploymentManager(options, solutionType, null, null); }); test('Empty solution, subscription or location should fail', () => { return deploymentManager .submit(undefined) .catch((error) => { expect(error).toBeDefined(); }); }); }); //# sourceMappingURL=deploymentmanager.spec.js.map