Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: added a test for successful oidc integration on browser env
  • Loading branch information
himanshusinghs committed Jan 4, 2024
commit 16e3e6f9de419089f5cb639249d2ba68d289d7b8
1 change: 0 additions & 1 deletion .depcheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ ignores:
- style-loader
- ts-loader
- mongodb-runner
- "@testing-library/webdriverio"
- "@wdio/local-runner"
- "@wdio/mocha-framework"
- "@wdio/spec-reporter"
Expand Down
209 changes: 97 additions & 112 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1022,12 +1022,12 @@
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@mongodb-js/oidc-mock-provider": "^0.6.9",
"@mongodb-js/oidc-plugin": "^0.3.0",
"@mongodb-js/prettier-config-compass": "^1.0.0",
"@mongodb-js/sbom-tools": "^0.5.4",
"@mongosh/service-provider-core": "^2.0.2",
"@testing-library/react": "^12.1.5",
"@testing-library/webdriverio": "^3.2.1",
"@types/babel__core": "^7.20.1",
"@types/babel__traverse": "^7.20.1",
"@types/chai": "^4.3.5",
Expand Down
5 changes: 4 additions & 1 deletion src/views/webview-app/connection-status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ const ConnectionStatusConnected: React.FC<{ connectionName: string }> = ({
const isDarkMode = useDarkMode();
return (
<div className={connectedContainerStyles}>
<div className={statusContainerStyles}>
<div
className={statusContainerStyles}
data-testid="connection-status-connected"
>
<Body as="div">
<span
className={cx(connectedStatusDotStyles, {
Expand Down