Skip to content

Commit

Permalink
Update deps, configure dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
rconner46 committed Oct 1, 2024
1 parent 3790269 commit 0e134c9
Show file tree
Hide file tree
Showing 4 changed files with 509 additions and 554 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
15 changes: 5 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "3.29.4",
"rollup": "3.29.5",
"rollup-plugin-dts": "^6.0.2",
"ts-jest": "^29.2.3",
"ts-node": "10.9.1",
Expand All @@ -66,17 +66,12 @@
"yarn": "^1.22.19"
},
"dependencies": {
"@wdio/globals": "^8.39.1",
"@wdio/reporter": "^8.16.3",
"@wdio/types": "^8.39.0",
"@wdio/globals": "^9.0.2",
"@wdio/reporter": "^9.0.2",
"@wdio/types": "^9.0.2",
"applause-reporter-common": "github:ApplauseOSS/applause-reporter-common#v1.1.0",
"axios": "^1.5.0",
"webdriverio": "^8.16.6",
"webdriverio": "^9.1.2",
"winston": "^3.13.1"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
}
}
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export class ApplausePlatformWdioReporter extends WDIOReporter {
).applauseTestCaseId;
if (applauseTestCaseId !== undefined) {
this.logger.info(`Test ${test.fullTitle}(${applauseTestCaseId}) passed`);
const caps = browser.capabilities as WebdriverIO.Capabilities;
const caps = browser.capabilities;
this.inflightCalls.push(
this.publciApi.submitResult(Number(applauseTestCaseId), {
testCycleId: this.config.applauseTestCycleId!,
Expand All @@ -286,7 +286,7 @@ export class ApplausePlatformWdioReporter extends WDIOReporter {
).applauseTestCaseId;
if (applauseTestCaseId !== undefined) {
this.logger.info(`Test ${test.fullTitle}(${applauseTestCaseId}) failed`);
const caps = browser.capabilities as WebdriverIO.Capabilities;
const caps = browser.capabilities;
this.inflightCalls.push(
this.publciApi.submitResult(Number(applauseTestCaseId), {
testCycleId: this.config.applauseTestCycleId!,
Expand All @@ -312,7 +312,7 @@ export class ApplausePlatformWdioReporter extends WDIOReporter {
).applauseTestCaseId;
if (applauseTestCaseId !== undefined) {
this.logger.info(`Test ${test.fullTitle}(${applauseTestCaseId}) skipped`);
const caps = browser.capabilities as WebdriverIO.Capabilities;
const caps = browser.capabilities;
this.inflightCalls.push(
this.publciApi.submitResult(Number(applauseTestCaseId), {
testCycleId: this.config.applauseTestCycleId!,
Expand Down
Loading

0 comments on commit 0e134c9

Please sign in to comment.