etcher/tests/test.e2e.ts
2024-04-25 14:24:36 +02:00

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!');
});
});