-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into dependabot/github…
…_actions/actions/checkout-3
- Loading branch information
Showing
21 changed files
with
293 additions
and
334 deletions.
There are no files selected for viewing
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { test, expect } from '@playwright/test'; | ||
import PlaywrightConfig from '../../../../playwright.config'; | ||
import { ZapClient, ContextType } from '../../../utils/ZapClient'; | ||
const zapClient = new ZapClient(); | ||
|
||
const url = `${PlaywrightConfig.use.baseURL}/admin/customer/edit.php`; | ||
test.describe.serial('会員登録画面のテストをします', () => { | ||
test.beforeAll(async () => { | ||
await zapClient.startSession(ContextType.Admin, 'admin_customer_edit') | ||
.then(async () => expect(await zapClient.isForcedUserModeEnabled()).toBeTruthy()); | ||
}); | ||
|
||
test('会員登録画面のテストをします', async ( { page }) => { | ||
await page.goto(url); | ||
await expect(page.locator('h1')).toContainText(/会員登録/); | ||
}); | ||
|
||
test('LC_Page_Admin_Customer_Edit_Ex クラスのテストをします @extends', async ( { page }) => { | ||
await page.goto(url); | ||
await expect(page.locator('h1')).toContainText(/カスタマイズ/); | ||
}); | ||
}); |
Oops, something went wrong.