Skip to content

Commit

Permalink
build: fix no usable sandbox github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancailbourdin committed Dec 18, 2024
1 parent d911419 commit 7f1048f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion puppeteer/cas.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ const BROWSER_OPTIONS = {
ignoreHTTPSErrors: true,
devtools: false,
defaultViewport: null,
slowMo: 5
slowMo: 5,
args: ['--no-sandbox', '--disable-setuid-sandbox'],
};

exports.browserOptions = () => BROWSER_OPTIONS;
Expand Down
1 change: 0 additions & 1 deletion puppeteer/scenarios/release_attribute_dynamic_saml.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ const assert = require("assert");
const pageContent = await page.content();

// Assert that user is logged in
cas.loge(pageContent);
assert(pageContent.includes("urn:oid:0.9.2342.19200300.100.1.3"))
assert(pageContent.includes("<li>[email protected]</li>"))
assert(pageContent.includes("urn:oid:2.5.4.3"))
Expand Down

0 comments on commit 7f1048f

Please sign in to comment.