Skip to content

Commit 286bb84

Browse files
committed
test reflow plugin
1 parent 774622a commit 286bb84

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/find/src/findForUrl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
2626
const plugins = await PluginsProvider.getPlugins();
2727
for (const plugin of plugins) {
2828
console.log('running plugin: ', plugin.name);
29-
await plugin.default({ page, addFinding });
29+
await plugin.default({ page, addFinding, url });
3030
}
3131

3232
try {

.github/scanner-plugins/reflow-test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default async function test({ page, addFinding } = {}) {
1+
export default async function test({ page, addFinding, url } = {}) {
22
console.log('reflow test');
33
// Check for horizontal scrolling at 320x256 viewport
44
try {

0 commit comments

Comments
 (0)