Files
2026-07-13 12:11:06 +08: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!');
});
});