Skip to content

Commit

Permalink
chore(deps): update dependency eslint-plugin-n to v17 (via #964)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored May 22, 2024
1 parent 1f67a91 commit 90f21cf
Show file tree
Hide file tree
Showing 33 changed files with 208 additions and 179 deletions.
187 changes: 102 additions & 85 deletions .pnp.cjs

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/allure-codeceptjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"expect": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-cucumberjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"glob": "^10.3.12",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"eslint-plugin-cypress": "^3.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"glob": "^10.3.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-jasmine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"glob": "^10.3.12",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"expect": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-js-commons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"expect": "^29.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-js-commons/src/sdk/Config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Category, EnvironmentInfo, TestResult } from "../model.js";
import { LifecycleListener } from "./LifecycleListener.js";
import { Writer } from "./Writer.js";
import { AllureContextProvider } from "./context";
import { AllureContextProvider } from "./context/index.js";

export interface LinkConfig {
type: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, expect, it } from "vitest";
import { AllureNodeReporterRuntime } from "../../../src/sdk/node";
import { AllureNodeReporterRuntime } from "../../../src/sdk/node/index.js";
import { mockWriter } from "../../utils/writer.js";

describe("AllureNodeReporterRuntime", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { existsSync, mkdtempSync, readFileSync, readdirSync, writeFileSync } fro
import * as os from "os";
import path from "path";
import { describe, expect, it } from "vitest";
import { AllureNodeReporterRuntime, Config, ContentType, FileSystemAllureWriter } from "../../src/sdk/node";
import { AllureNodeReporterRuntime, Config, ContentType, FileSystemAllureWriter } from "../../src/sdk/node/index.js";

describe("FileSystemAllureWriter", () => {
it("should save attachment from path", () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-js-commons/test/spec/testPlan.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { mkdtempSync, writeFileSync } from "fs";
import os from "os";
import path from "path";
import { afterEach, expect, it } from "vitest";
import { parseTestPlan } from "../../src/sdk/node";
import { parseTestPlan } from "../../src/sdk/node/index.js";

const originalEnv = process.env;
const tmpDir = mkdtempSync(path.join(os.tmpdir(), "test-"));
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-js-commons/test/spec/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
isAnyStepFailed,
serialize,
typeToExtension,
} from "../../src/sdk/node";
} from "../../src/sdk/node/index.js";

const fixtures = {
withoutFailed: {
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-js-commons/test/utils/writer.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { vi } from "vitest";
import { Category, TestResult, TestResultContainer } from "../../src";
import { Category, TestResult, TestResultContainer } from "../../src/index.js";

export const mockWriter = () => ({
writeResult: vi.fn<[TestResult], void>(),
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-mocha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fs-jetpack": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"glob": "^10.3.12",
Expand Down
2 changes: 1 addition & 1 deletion packages/allure-vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"glob": "^10.3.15",
Expand Down
2 changes: 1 addition & 1 deletion packages/newman-reporter-allure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"expect": "^29.7.0",
Expand Down
Loading

0 comments on commit 90f21cf

Please sign in to comment.