123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
-
- let commands = require('../src/commands')
- let os = require('os')
-
- describe('commands end-to-end', function () {
- beforeEach(function () {
- if (os.platform() === 'darwin') {
- commands.init()
- }
- })
-
- afterEach(function () {
- })
-
- it('command - showsdks', function () {
- if (os.platform() === 'darwin') {
- commands.showsdks({ 'no-output': true })
- }
- })
-
- it('command - showdevicetypes', function () {
- if (os.platform() === 'darwin') {
- commands.showdevicetypes({ 'no-output': true })
- }
- })
-
- it('command - launch', function () {
-
-
- })
-
- it('command - install', function () {
-
-
- })
-
- it('command - start', function () {
- let devicetypeid = 'iPhone-6'
- if (os.platform() === 'darwin') {
- commands.start({ 'devicetypeid': devicetypeid })
- }
- })
- })
|