obsidian-testing-framework 0.1.0 → 0.1.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/lib/index.js +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -87,7 +87,7 @@ export const test = base.extend({
|
|
|
87
87
|
await electronApp.waitForEvent("window");
|
|
88
88
|
await run(electronApp);
|
|
89
89
|
await electronApp.close();
|
|
90
|
-
},
|
|
90
|
+
}, { auto: true }
|
|
91
91
|
],
|
|
92
92
|
page: [
|
|
93
93
|
async ({ electronApp }, run) => {
|
|
@@ -112,6 +112,6 @@ export const test = base.extend({
|
|
|
112
112
|
console.log(...(await Promise.all(msg.args().map((a) => a.jsonValue()))));
|
|
113
113
|
});
|
|
114
114
|
await run(page);
|
|
115
|
-
},
|
|
115
|
+
}, { auto: true }
|
|
116
116
|
],
|
|
117
117
|
});
|