0.0.10 • Published 12 months ago

@digy4/digyrunner-codeceptjs v0.0.10

Weekly downloads
-
License
-
Repository
-
Last release
12 months ago

digyrunner-codeceptjs

DigyRunner for CodeceptJS-Playwright

Steps to Integrate

  1. Install the npm package: npm install @digy4/digyrunner-codeceptjs
  2. Create a file in your project called digyRunnerConfig.js and copy the following to paste inside this file:
exports.digyRunnerConfig = {
    lob: "Digy4 LOB",
    application: "Codecept Project",
    release: "release",
    projectName: "Digy4 Test Project",
    suiteName: "Regression",
    teamName: "Digy4 Team",
    appVersion: "1.0",
    environment: "test",
    moduleName: "module",
    tester: "Joe Bloggs",
    ba: "Jane Doe",
    developer: "John Smith",
    // testType: "API",
    testType: "WEB",
    resultsSummaryUrl: '',
    projectPlanUrl: '',
    clientId: "",
    clientSecret: "",
};
  1. Edit digyRunnerConfig.js with the appropriate values, especially:
    • lob, projectName, teamName
    • resultsSummaryUrl, projectPlanUrl
    • clientId, clientSecret
  2. Inside of your codecept.conf.js file, import the digyRunnerConfig file and register the helper like below:
const { digyRunnerConfig } = require("<path-to>/digyRunnerConfig");

exports.config = {
  // ...
  helpers: {
    // ...
    Digy4Helper: {
      require: "@digy4/digyrunner-codeceptjs/Digy4Helper",
      enabled: true,
      digyRunnerConfig: digyRunnerConfig,
      tempPath: "./digy_temp",
    },
    // ...
  },
  // ...
}
  1. Now when you run your tests, you should see the results appear in the Digy Dashboard assuming the integration was done correctly.
0.0.10

12 months ago

0.0.10-alpha.1

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago