Skip to content

Commit

Permalink
[wallabyjs] add new configuration options
Browse files Browse the repository at this point in the history
This adds two new configuration options, as mentioned in https://github.com/wallabyjs/public/blob/518fb8df1b7f9076bfe5257a433aac0a94c3e48e/CHANGELOG.md\?plain\=1\#L394:

- `symlinkNodeModules`
- `compactMessageOutput`
  • Loading branch information
boneskull committed Mar 1, 2024
1 parent 1e70b91 commit f97cd49
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions types/wallabyjs/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,18 @@ declare module "wallabyjs" {
* @defaultValue `false`
*/
preservePaths?: boolean | undefined;

/**
* If `true`, makes node test runner symlink local node modules from
* Wallaby cache to correctly support ES modules resolution
*/
symlinkNodeModules?: boolean | undefined;

/**
* If `true`, Willaby will not add new lines between test messages or
* test errors in Wallaby output.
*/
compactMessageOutput?: boolean | undefined;
}

/**
Expand Down

0 comments on commit f97cd49

Please sign in to comment.