fail-on-console 1.0.0 → 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 CHANGED
@@ -1,5 +1,25 @@
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
+
15
+ ## [1.0.1](https://github.com/benquarmby/fail-on-console/compare/v1.0.0...v1.0.1) (2026-07-06)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * add repository reference ([a749a1c](https://github.com/benquarmby/fail-on-console/commit/a749a1c5134b7cb3cf7109d317e62e082042bd6f))
21
+ * include license ([af9f90d](https://github.com/benquarmby/fail-on-console/commit/af9f90df7bf5fd13a832adb6fa39202b9ddcb6d7))
22
+
3
23
  ## 1.0.0 (2026-07-06)
4
24
 
5
25
 
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ben Quarmby
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -27,24 +27,24 @@ yarn add --dev fail-on-console
27
27
 
28
28
  ## Setup
29
29
 
30
- `setup` should be called once in a global setup file, accepting the lifecycle hooks and `expect` utility from the testing framework.
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 {setup} from "fail-on-console";
36
+ import {setupConsole} from "fail-on-console";
37
37
 
38
- setup({beforeEach, afterEach, expect});
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 {setup} from "fail-on-console";
45
+ import {setupConsole} from "fail-on-console";
46
46
 
47
- setup({beforeEach, afterEach, expect});
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
- setup({
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
- ### `setup(options)`
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"]] - Console methods to monitor.
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 setup(options: SetupOptions): void;
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 setup({beforeEach, afterEach, expect, methods = defaultMethods}) {
49
+ function setupConsole({beforeEach, afterEach, expect, methods = defaultMethods}) {
50
50
  if (testApi) {
51
- throw new Error("fail-on-console: Call setup() only once.");
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 setup() before using allowConsole().");
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 = setup;
116
+ exports.setup = setupConsole;
117
+ exports.setupConsole = setupConsole;
117
118
  exports.allowConsole = allowConsole;
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "fail-on-console",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Prevent console noise from obscuring test results.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/benquarmby/fail-on-console"
8
+ },
5
9
  "license": "MIT",
6
10
  "main": "./index.js",
7
11
  "files": [