Skip to content

Commit

Permalink
fix: attempt to set browserstack session status (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastiaanNijland authored Jul 21, 2022
1 parent 7c38aa6 commit 4d436b3
Show file tree
Hide file tree
Showing 5 changed files with 569 additions and 269 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,26 +63,26 @@
"**/minimist": ">=1.2.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/prompt": "^17.0.0",
"@babel/core": "^7.18.9",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt": "^17.0.3",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"codecov": "^3.7.2",
"commitizen": "^4.2.1",
"cross-env": "^7.0.2",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint": "^8.20.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-jsdoc": "^39.3.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-jsx-a11y": "^6.6.0",
"git-cz": "^4.9.0",
"glob": "^8.0.3",
"jest": "^26.4.2",
Expand All @@ -94,9 +94,9 @@
"serve": "^13.0.0",
"signale": "^1.4.0",
"ts-jest": "^26.3.0",
"ts-node": "^10.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.2"
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*.{ts,js}": [
Expand Down Expand Up @@ -190,6 +190,6 @@
"@sitespeed.io/edgedriver": "^101.0.1210-32",
"chromedriver": "^101.0.0",
"geckodriver": "^3.0.1",
"iedriver": "^3.14.2"
"iedriver": "^4.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/dullahan-plugin-aws-s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
},
"dependencies": {
"@k2g/dullahan": "^1.0.0-alpha.147",
"aws-sdk": "^2.753.0"
"aws-sdk": "^2.1179.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ export default class DullahanPluginBrowserstack extends DullahanPlugin<
},
body: JSON.stringify({
name: testName,
status: error ? 'failed' : 'passed'
status: error ? 'failed' : 'passed',
reason: ''
})
}).catch(console.error)
];
Expand Down
2 changes: 1 addition & 1 deletion packages/dullahan-runner-aws-lambda/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"dependencies": {
"@k2g/dullahan": "^1.0.0-alpha.147",
"async-sema": "^3.1.0",
"aws-sdk": "^2.753.0",
"aws-sdk": "^2.1179.0",
"fast-glob": "^3.2.4",
"tiny-async-pool": "^1.1.0"
}
Expand Down
Loading

0 comments on commit 4d436b3

Please sign in to comment.