Created
October 29, 2021 14:29
-
-
Save el3um4s/f8b1f510ff9770c962e835ba0a3c3c0d to your computer and use it in GitHub Desktop.
MEDIUM - Ho to Test Electron Apps - 13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { PlaywrightTestConfig } from "@playwright/test"; | |
const config: PlaywrightTestConfig = { | |
testDir: "./tests", | |
expect: { | |
toMatchSnapshot: { threshold: 0.2 }, | |
}, | |
}; | |
export default config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment