From c5debf695f6541779522e8357c2abff9859a3dcf Mon Sep 17 00:00:00 2001 From: Logan Graham Date: Mon, 9 Sep 2024 18:14:54 -0400 Subject: [PATCH] lint fixes --- docs/visual-testing/integrations/playwright.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/visual-testing/integrations/playwright.md b/docs/visual-testing/integrations/playwright.md index 0cff351f78..5c02a69e86 100644 --- a/docs/visual-testing/integrations/playwright.md +++ b/docs/visual-testing/integrations/playwright.md @@ -70,7 +70,7 @@ export default defineConfig({ Though this step is optional it is _highly recommended_ for ease of use / developer experience. By creating a custom Playwright fixture you can enable quick and convenient access to the Sauce Visual service, as well as setting and configuring global defaults which can be overridden on a per-test basis. See the [Playwright Fixtures Docs Page](https://playwright.dev/docs/test-fixtures#creating-a-fixture) for more information and other examples of the benefits. -If you already have a custom fixture file, simply append the body of the example `base.extend` below to it; otherwise, create a `custom-test.ts` file with the included contents. +If you already have a custom fixture file, append the body of the example `base.extend` below to it; otherwise, create a `custom-test.ts` file with the included contents.
`custom-test.ts` File contents @@ -147,7 +147,7 @@ test('has title', async ({ page }, testInfo) => { -### Step 5 - Configure your Sauce Labs credentials +### Step 5 - Configure Your Sauce Labs Credentials Sauce Visual relies on environment variables for authentication.
Both `SAUCE_USERNAME` and `SAUCE_ACCESS_KEY` need to be set prior starting your Playwright tests.