@revoloo/cypress6
Version:
Cypress.io end to end testing tool
51 lines (40 loc) • 1.15 kB
JavaScript
require('../../spec_helper')
const electron = require('electron')
const dialog = require(`${root}../lib/gui/dialog`)
describe('gui/dialog', () => {
context('.show', () => {
beforeEach(function () {
this.showOpenDialog = (electron.dialog.showOpenDialog = sinon.stub().resolves({
filePaths: [],
}))
})
it('calls dialog.showOpenDialog with args', function () {
dialog.show()
expect(this.showOpenDialog).to.be.calledWith({
properties: ['openDirectory'],
})
})
it('resolves with first path', function () {
this.showOpenDialog.resolves({
filePaths: ['foo', 'bar'],
})
return dialog.show().then((ret) => {
expect(ret).to.eq('foo')
})
})
it('handles null paths', function () {
this.showOpenDialog.resolves({
filePaths: null,
})
return dialog.show().then((ret) => {
expect(ret).to.eq(undefined)
})
})
it('handles null obj', function () {
this.showOpenDialog.resolves(null)
return dialog.show().then((ret) => {
expect(ret).to.eq(undefined)
})
})
})
})