chainwright 0.9.0 → 0.9.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/core/index.d.ts +1 -1
- package/dist/core/index.js +1 -1
- package/package.json +1 -1
package/dist/core/index.d.ts
CHANGED
|
@@ -21,6 +21,6 @@ declare function defineWalletSetup(password: string, fn: WalletSetupFunction, co
|
|
|
21
21
|
* test('Web3 test', async ({ page, chainwright }) => {});
|
|
22
22
|
* ```
|
|
23
23
|
*/
|
|
24
|
-
declare function testWithChainwright<
|
|
24
|
+
declare function testWithChainwright<TestFixtures extends Fixtures, WorkerFixtures extends Fixtures>(customFixtures: TestType<TestFixtures, WorkerFixtures>): TestType<TestFixtures, WorkerFixtures>;
|
|
25
25
|
|
|
26
26
|
export { WalletSetupConfig, WalletSetupFunction, defineWalletSetup, testWithChainwright };
|
package/dist/core/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
async function u(t,
|
|
1
|
+
async function u(t,s,i={}){return{fn:s,password:t,config:i}}import{test as o,mergeTests as p}from"@playwright/test";function a(t){return p(o,t)}export{u as defineWalletSetup,a as testWithChainwright};
|
package/package.json
CHANGED