appium-doctor
Version:
Test environment for fitness to run Appium
17 lines (13 loc) • 379 B
JavaScript
// transpile:mocha
import newDoctor from '../lib/factory';
import chai from 'chai';
chai.should();
describe('factory', () => {
for (let config of [{'ios': true}, {'android': true}, {'dev': true}]) {
it('should work for ' + config, () => {
let doctor = newDoctor(config);
doctor.should.exists;
doctor.checks.should.have.length.above(0);
});
}
});