fail-on-console 1.0.1 → 1.1.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.
- package/CHANGELOG.md +12 -0
- package/README.md +7 -7
- package/index.d.ts +8 -2
- package/index.js +5 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.0](https://github.com/benquarmby/fail-on-console/compare/v1.0.1...v1.1.0) (2026-07-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add setupConsole export ([073ba69](https://github.com/benquarmby/fail-on-console/commit/073ba69ce1b7e07d09880ef110aea55f34b7f995))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* deprecate setup export ([21f732a](https://github.com/benquarmby/fail-on-console/commit/21f732a1b48420818d055f0dace57eab3e4eb69e))
|
|
14
|
+
|
|
3
15
|
## [1.0.1](https://github.com/benquarmby/fail-on-console/compare/v1.0.0...v1.0.1) (2026-07-06)
|
|
4
16
|
|
|
5
17
|
|
package/README.md
CHANGED
|
@@ -27,24 +27,24 @@ yarn add --dev fail-on-console
|
|
|
27
27
|
|
|
28
28
|
## Setup
|
|
29
29
|
|
|
30
|
-
`
|
|
30
|
+
`setupConsole` should be called once in a global setup file, accepting the lifecycle hooks and `expect` utility from the testing framework.
|
|
31
31
|
|
|
32
32
|
### With Vitest
|
|
33
33
|
|
|
34
34
|
```ts
|
|
35
35
|
import {beforeEach, afterEach, expect} from "vitest";
|
|
36
|
-
import {
|
|
36
|
+
import {setupConsole} from "fail-on-console";
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
setupConsole({beforeEach, afterEach, expect});
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### With Jest
|
|
42
42
|
|
|
43
43
|
```ts
|
|
44
44
|
import {beforeEach, afterEach, expect} from "@jest/globals";
|
|
45
|
-
import {
|
|
45
|
+
import {setupConsole} from "fail-on-console";
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
setupConsole({beforeEach, afterEach, expect});
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
### Customizing Monitored Methods
|
|
@@ -52,7 +52,7 @@ setup({beforeEach, afterEach, expect});
|
|
|
52
52
|
By default, `debug` is not monitored but `error`, `warn`, `info`, and `log` are. This can be customized by passing a `methods` array:
|
|
53
53
|
|
|
54
54
|
```ts
|
|
55
|
-
|
|
55
|
+
setupConsole({
|
|
56
56
|
beforeEach,
|
|
57
57
|
afterEach,
|
|
58
58
|
expect,
|
|
@@ -85,7 +85,7 @@ allowConsole("error", ["known warning", /deprecated/, (msg) => msg.includes("thi
|
|
|
85
85
|
|
|
86
86
|
## API Reference
|
|
87
87
|
|
|
88
|
-
### `
|
|
88
|
+
### `setupConsole(options)`
|
|
89
89
|
|
|
90
90
|
Initializes console spies that monitor active tests.
|
|
91
91
|
|
package/index.d.ts
CHANGED
|
@@ -28,6 +28,12 @@ export interface AllowPredicate {
|
|
|
28
28
|
|
|
29
29
|
export type AllowRule = string | RegExp | AllowPredicate;
|
|
30
30
|
|
|
31
|
+
/**
|
|
32
|
+
* @deprecated Use setupConsole() instead. This function will be removed in a
|
|
33
|
+
* future major version.
|
|
34
|
+
*/
|
|
35
|
+
export function setup(options: SetupOptions): void;
|
|
36
|
+
|
|
31
37
|
/**
|
|
32
38
|
* Installs console spies that fail the current test if any monitored console
|
|
33
39
|
* method is called. Call once at the top of the test setup file, passing the
|
|
@@ -37,7 +43,7 @@ export type AllowRule = string | RegExp | AllowPredicate;
|
|
|
37
43
|
* @param {Function} options.beforeEach The beforeEach hook from the test framework.
|
|
38
44
|
* @param {Function} options.afterEach The afterEach hook from the test framework.
|
|
39
45
|
* @param {Object} options.expect The expect object from the test framework. Must expose getState().
|
|
40
|
-
* @param {string[]} [options.methods=["error","warn","info","log"]]
|
|
46
|
+
* @param {string[]} [options.methods=["error","warn","info","log"]] Console methods to monitor.
|
|
41
47
|
* @example
|
|
42
48
|
* // Jest
|
|
43
49
|
* import {beforeEach, afterEach, expect} from "@jest/globals";
|
|
@@ -51,7 +57,7 @@ export type AllowRule = string | RegExp | AllowPredicate;
|
|
|
51
57
|
*
|
|
52
58
|
* setup({beforeEach, afterEach, expect});
|
|
53
59
|
*/
|
|
54
|
-
export function
|
|
60
|
+
export function setupConsole(options: SetupOptions): void;
|
|
55
61
|
|
|
56
62
|
/**
|
|
57
63
|
* Allows specific console calls to pass. Console exceptions can be configured
|
package/index.js
CHANGED
|
@@ -46,9 +46,9 @@ function isAllowed(message, rule) {
|
|
|
46
46
|
return rule.test(message);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
function
|
|
49
|
+
function setupConsole({beforeEach, afterEach, expect, methods = defaultMethods}) {
|
|
50
50
|
if (testApi) {
|
|
51
|
-
throw new Error("fail-on-console: Call
|
|
51
|
+
throw new Error("fail-on-console: Call setupConsole() only once.");
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
testApi = {beforeEach, afterEach, expect};
|
|
@@ -95,7 +95,7 @@ function setup({beforeEach, afterEach, expect, methods = defaultMethods}) {
|
|
|
95
95
|
|
|
96
96
|
function allowConsole(method, rules) {
|
|
97
97
|
if (!testApi) {
|
|
98
|
-
throw new Error("fail-on-console: Call
|
|
98
|
+
throw new Error("fail-on-console: Call setupConsole() before using allowConsole().");
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
const normalized = Array.isArray(rules) ? rules : [rules];
|
|
@@ -113,5 +113,6 @@ function allowConsole(method, rules) {
|
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
exports.setup =
|
|
116
|
+
exports.setup = setupConsole;
|
|
117
|
+
exports.setupConsole = setupConsole;
|
|
117
118
|
exports.allowConsole = allowConsole;
|