8 lines
214 B
Plaintext
8 lines
214 B
Plaintext
|
|
import { browser } from '@wdio/globals'
|
||
|
|
|
||
|
|
describe('Electron Testing', () => {
|
||
|
|
it('should print application title', async () => {
|
||
|
|
console.log('Hello', await browser.getTitle(), 'application!')
|
||
|
|
})
|
||
|
|
})
|