Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Created October 29, 2021 14:28
Show Gist options
  • Save el3um4s/98475c5449875b0a298c70bb2eb97a0e to your computer and use it in GitHub Desktop.
Save el3um4s/98475c5449875b0a298c70bb2eb97a0e to your computer and use it in GitHub Desktop.
MEDIUM - Ho to Test Electron Apps - 10
test("Check version number: APP", async () => {
const versionNumberApp = await firstWindow.innerText(
"data-testid=version-number-app"
);
expect(versionNumberApp).not.toBe("-");
const isValidNumberApp = semver.valid(semver.coerce(versionNumberApp));
expect(semver.valid(isValidNumberApp)).not.toBeNull();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment