We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f5a500 commit 24cc921Copy full SHA for 24cc921
.changeset/kind-owls-rest.md
@@ -0,0 +1,5 @@
1
+---
2
+'@web/test-runner': patch
3
4
+
5
+Add `sendMousePlugin` to the default test runner config so that it will load automatically.
packages/test-runner/src/config/parseConfig.ts
@@ -7,6 +7,7 @@ import {
7
sendKeysPlugin,
8
filePlugin,
9
snapshotPlugin,
10
+ sendMousePlugin,
11
} from '@web/test-runner-commands/plugins';
12
import { getPortPromise } from 'portfinder';
13
import path from 'path';
@@ -252,6 +253,7 @@ export async function parseConfig(
252
253
setUserAgentPlugin(),
254
filePlugin(),
255
sendKeysPlugin(),
256
+ sendMousePlugin(),
257
snapshotPlugin({ updateSnapshots: !!cliArgs.updateSnapshots }),
258
);
259
0 commit comments