Skip to content

Commit

Permalink
release branch merge
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielClarkeEducation committed Dec 2, 2024
2 parents cd23035 + bfa2e70 commit f3e9183
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { browser } from 'k6/browser';
import { sleep, check } from 'k6';

var configName = __ENV.CONFIG;
import { sleep } from 'k6';

export const options = {
scenarios: {
Expand Down Expand Up @@ -42,7 +40,7 @@ export default async function () {
{ name: 'auth-secret', value: ENVIRONMENT.challenge, sameSite: 'Strict', url: address }
]);

var resp = await page.goto(address,);
await page.goto(address,);

await page.screenshot({ path: 'screenshots/screenshot.png' });

Expand Down

0 comments on commit f3e9183

Please sign in to comment.