@shopware-ag/acceptance-test-suite 3.11.0 → 3.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -858,6 +858,15 @@ const test$a = test$e.extend({
|
|
|
858
858
|
await page.close();
|
|
859
859
|
await context.close();
|
|
860
860
|
},
|
|
861
|
+
InstallPage: async ({ browser }, use) => {
|
|
862
|
+
const context = await browser.newContext({
|
|
863
|
+
baseURL: process.env["APP_URL"]
|
|
864
|
+
});
|
|
865
|
+
const page = await context.newPage();
|
|
866
|
+
await use(page);
|
|
867
|
+
await page.close();
|
|
868
|
+
await context.close();
|
|
869
|
+
},
|
|
861
870
|
page: async ({ AdminPage }, use) => {
|
|
862
871
|
await use(AdminPage);
|
|
863
872
|
},
|