@revoloo/cypress6
Version:
Cypress.io end to end testing tool
31 lines (28 loc) • 763 B
JavaScript
import { observable } from 'mobx'
export default class Browser {
displayName
name
family
channel
version
path
profilePath
majorVersion
info
custom
warning
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
}
}