UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

31 lines (28 loc) 763 B
import { observable } from 'mobx' export default class Browser { @observable displayName @observable name @observable family @observable channel @observable version @observable path @observable profilePath @observable majorVersion @observable info @observable custom @observable warning @observable isChosen = false constructor (browser) { this.displayName = browser.displayName this.name = browser.name this.family = browser.family this.channel = browser.channel this.version = browser.version this.path = browser.path this.profilePath = browser.profilePath this.majorVersion = browser.majorVersion this.info = browser.info this.custom = browser.custom this.warning = browser.warning } }