Skip to content

Commit

Permalink
Merge pull request #1731 from NoRedInk/derek/fix-github-actions-bug
Browse files Browse the repository at this point in the history
Use `--no-sandbox` flag for puppeteer tests
  • Loading branch information
caseyWebb authored Feb 3, 2025
2 parents 9490b0f + 3a70bb0 commit 47c96b2
Show file tree
Hide file tree
Showing 4 changed files with 1,860 additions and 4,732 deletions.
4 changes: 2 additions & 2 deletions lib/CustomElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function noOp() {}
exports.create = function create(config) {
if (customElements.get(config.tagName)) {
throw Error(
"Custom element with tag name " + config.tagName + " already exists."
"Custom element with tag name " + config.tagName + " already exists.",
);
}

Expand Down Expand Up @@ -168,7 +168,7 @@ function makeMakeClass() {
" }",
" }",
"}",
].join("\n")
].join("\n"),
);
} catch (e) {
return function () {
Expand Down
Loading

0 comments on commit 47c96b2

Please sign in to comment.