Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"test": "npm run test:only",
"test:only": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent",
"test:debug": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent=false",
"test:record": "NODE_OPTIONS=--experimental-vm-modules FRODO_POLLY_MODE=record npx jest --silent=false --runInBand --updateSnapshot --testPathPattern",
"test:record_noauth": "NODE_OPTIONS=--experimental-vm-modules FRODO_POLLY_MODE=record_noauth npx jest --silent=false --updateSnapshot --testPathIgnorePatterns cjs --testPathPattern",
"test:update": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent=false --updateSnapshot --testPathPattern",
"test:record": "NODE_OPTIONS=--experimental-vm-modules FRODO_POLLY_MODE=record npx jest --silent=false --runInBand --updateSnapshot",
"test:record_noauth": "NODE_OPTIONS=--experimental-vm-modules FRODO_POLLY_MODE=record_noauth npx jest --silent=false --updateSnapshot --testPathIgnorePatterns cjs",
"test:update": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent=false --updateSnapshot",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .ts --ignore-path .gitignore .",
"clean-types": "rimraf types",
Expand Down
3 changes: 1 addition & 2 deletions src/ops/AuthenticateOps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,6 @@ export async function getTokens({
message: `AuthenticateOps.getTokens: Error getting tokens: ${error} Stack: ${error.stack}`,
state,
});
throw error
// throw new FrodoError(`Error getting tokens`, error);
throw new FrodoError(`Error getting tokens`, error);
}
}
Loading
Loading