Skip to content

Commit 2011929

Browse files
more weird testing examples
1 parent dd02434 commit 2011929

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

examples/vanilla/mathmock.spec.js

+39
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { expect } from "@playwright/test";
22
import { test } from "rollwright";
33
import alias from "@rollup/plugin-alias";
4+
import virtual from "@rollup/plugin-virtual";
45

56
test.describe("mock", () => {
67
test.use({ plugins: [alias({ entries: { "./math.js": "./math.mock.js" } })] });
@@ -29,6 +30,44 @@ test.describe("mock", () => {
2930
});
3031
});
3132

33+
test.describe("virtual mock", () => {
34+
test.use({
35+
plugins: [
36+
virtual({
37+
inlinemock: `
38+
import { stub } from "sinon";
39+
export let sum = await (${async () => {
40+
let { stub } = await import("sinon");
41+
return stub().returns(10);
42+
}})();
43+
export let multiply = stub();
44+
`,
45+
}),
46+
alias({ entries: { "./math.js": "inlinemock" } }),
47+
],
48+
});
49+
50+
test("sum 1", async ({ execute }) => {
51+
let mock = await execute(async () => {
52+
let { sum } = await import("inlinemock");
53+
return sum;
54+
});
55+
56+
let res = await execute(async (from) => {
57+
let element = document.createElement("div");
58+
document.body.append(element);
59+
60+
let { sum } = await import("./math.js");
61+
element.append(document.createTextNode(String(sum(from, 2))));
62+
return element;
63+
}, 1);
64+
65+
expect(await res.asElement().innerText()).toContain(String(10));
66+
expect(await mock.evaluate((v) => v.callCount)).toEqual(1);
67+
expect(await mock.evaluate((v) => v.calledWith(1, 2))).toEqual(true);
68+
});
69+
});
70+
3271
test.describe("real", () => {
3372
test("sum 1", async ({ execute }) => {
3473
let res = await execute(async (from) => {

examples/vanilla/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"dependencies": {
99
"@playwright/test": "^1.42.1",
1010
"@rollup/plugin-alias": "^5.1.0",
11+
"@rollup/plugin-virtual": "^3.0.2",
1112
"rollup-plugin-worker-url": "file:../../packages/rollup-plugin-worker-url",
1213
"rollwright": "file:../../packages/rollwright",
1314
"sinon": "^17.0.1"

0 commit comments

Comments
 (0)