Skip to content

Commit

Permalink
fix: adjust module type
Browse files Browse the repository at this point in the history
  • Loading branch information
bun913 committed Aug 24, 2024
1 parent 6c54d42 commit b0fdab0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# newman-reporter-testrail-neo

> [!NOTE]
> This repository is inspired by [billylam/newman-reporter-testrail](https://github.com/billylam/newman-reporter-testrail-neo).
> This repository is inspired by [billylam/newman-reporter-testrail](https://github.com/billylam/newman-reporter-testrail).
> Unfortunately, the project has been archived and is no longer maintained.
> So, I decided to create a new project based on the original one.(not forked)
Expand Down
2 changes: 1 addition & 1 deletion lib/TestrailReporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const dayjs = require("dayjs")
const getEnv = require("./environment")
const TestRailApi = require("./testRailApi")
const Logger = require("./logger")
export const requiredOptions = ["domain", "username", "apikey", "projectId"]
const requiredOptions = ["domain", "username", "apikey", "projectId"]

class TestRailReporter {
constructor(emitter, reporterOptions, options) {
Expand Down
2 changes: 1 addition & 1 deletion test/systemTest/system_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"listen": "test",
"script": {
"exec": [
"pm.test(\"Successful Get request\", function () {",
"pm.test(\"C1 Successful Get request\", function () {",
" pm.expect(pm.response.code).to.be.eq(200);",
"});"
],
Expand Down

0 comments on commit b0fdab0

Please sign in to comment.