Skip to content

Commit

Permalink
Merge pull request #312 from webdriverio-community/sm/remove-apis
Browse files Browse the repository at this point in the history
  • Loading branch information
goosewobbler authored Nov 30, 2023
2 parents abe59cb + 2b0f04a commit 67b7877
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/multiremote/api.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const { name, version } = packageJson;
describe('Electron APIs using Multiremote', () => {
it('should retrieve app metadata through the electron API', async () => {
const appName = await browser.electron.execute((electron) => electron.app.getName());
expect(appName).toEqual([name, name]);
expect(appName).toBe([name, name]);
const appVersion = await browser.electron.execute((electron) => electron.app.getVersion());
expect(appVersion).toEqual([version, version]);
expect(appVersion).toBe([version, version]);
});

it('should allow to retrieve API values from single instance', async () => {
Expand Down

0 comments on commit 67b7877

Please sign in to comment.