mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-23 23:07:17 +00:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import { browser } from '@wdio/globals';
|
|
|
|
describe('Electron Testing', () => {
|
|
it('should print application title', async () => {
|
|
console.log('Hello', await browser.getTitle(), 'application!');
|
|
});
|
|
});
|