Skip to content

Commit

Permalink
👷 Drop netlify related code and "please <stuff>" actions (#3328)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Oct 19, 2022
1 parent b61f4a6 commit 93fb06a
Show file tree
Hide file tree
Showing 7 changed files with 290 additions and 7,243 deletions.
10 changes: 0 additions & 10 deletions .github/actions/deploy-netlify/action.yml

This file was deleted.

82 changes: 0 additions & 82 deletions .github/actions/deploy-netlify/index.cjs

This file was deleted.

11 changes: 0 additions & 11 deletions .github/actions/deploy-netlify/package.json

This file was deleted.

138 changes: 0 additions & 138 deletions .github/workflows/please-actions.yml

This file was deleted.

2 changes: 0 additions & 2 deletions packages/fast-check/test/e2e/Poisoning.spec.ts
Expand Up @@ -186,8 +186,6 @@ function dropMainGlobals(): void {
Set,
WeakMap,
WeakSet,
WeakRef,
FinalizationRegistry,
Proxy,
Reflect,
Buffer,
Expand Down
3 changes: 2 additions & 1 deletion packages/poisoning/test/internals/CaptureAllGlobals.spec.ts
Expand Up @@ -107,7 +107,8 @@ describe('captureAllGlobals', () => {
if (flattenGlobalsValuesToName.has(globalValue)) {
const associatedName = flattenGlobalsValuesToName.get(globalValue);
const errorMessage = `Found value for ${globalName} attached to ${associatedName}`;
throw new Error(errorMessage, { cause: err });
const ErrorWithCause: new (message: string | undefined, options: { cause: unknown }) => Error = Error;
throw new ErrorWithCause(errorMessage, { cause: err });
}
throw err;
}
Expand Down

0 comments on commit 93fb06a

Please sign in to comment.