@nomicfoundation/edr 0.12.1 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +6 -0
  2. package/package.json +8 -8
package/index.d.ts CHANGED
@@ -836,6 +836,12 @@ export interface SolidityTestRunnerConfigArgs {
836
836
  * match the pattern will be executed and reported as a test result.
837
837
  */
838
838
  testPattern?: string
839
+ /**
840
+ * A regex pattern to exclude tests. If provided, test methods that match
841
+ * the pattern will not be executed or reported as a test result. Applied
842
+ * after `test_pattern`.
843
+ */
844
+ excludeTestPattern?: string
839
845
  /**
840
846
  * Controls whether to generate a gas report after running the tests.
841
847
  * Enabling this also enables collection of all traces and EVM isolation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomicfoundation/edr",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "devDependencies": {
5
5
  "@napi-rs/cli": "^2.18.4",
6
6
  "@nomicfoundation/ethereumjs-util": "^9.0.4",
@@ -59,13 +59,13 @@
59
59
  "repository": "NomicFoundation/edr.git",
60
60
  "types": "index.d.ts",
61
61
  "dependencies": {
62
- "@nomicfoundation/edr-darwin-arm64": "0.12.1",
63
- "@nomicfoundation/edr-darwin-x64": "0.12.1",
64
- "@nomicfoundation/edr-linux-arm64-gnu": "0.12.1",
65
- "@nomicfoundation/edr-linux-arm64-musl": "0.12.1",
66
- "@nomicfoundation/edr-linux-x64-gnu": "0.12.1",
67
- "@nomicfoundation/edr-linux-x64-musl": "0.12.1",
68
- "@nomicfoundation/edr-win32-x64-msvc": "0.12.1"
62
+ "@nomicfoundation/edr-darwin-arm64": "0.13.0",
63
+ "@nomicfoundation/edr-darwin-x64": "0.13.0",
64
+ "@nomicfoundation/edr-linux-arm64-gnu": "0.13.0",
65
+ "@nomicfoundation/edr-linux-arm64-musl": "0.13.0",
66
+ "@nomicfoundation/edr-linux-x64-gnu": "0.13.0",
67
+ "@nomicfoundation/edr-linux-x64-musl": "0.13.0",
68
+ "@nomicfoundation/edr-win32-x64-msvc": "0.13.0"
69
69
  },
70
70
  "scripts": {
71
71
  "artifacts": "napi artifacts",