Skip to content

Commit

Permalink
[KeyVault] Fix integration test path for keyvault-keys (#22490)
Browse files Browse the repository at this point in the history
  • Loading branch information
timovv authored Jul 7, 2022
1 parent af6cfe4 commit b6dbf73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sdk/keyvault/keyvault-keys/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
"generate:client": "autorest --typescript swagger/README.md",
"integration-test:browser": "dev-tool run test:browser",
"integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 'dist-esm/test/**/*.spec.js'",
"integration-test:node:no-timeout": "ndev-tool run test:node-js-input -- --timeout 9999999 'dist-esm/test/**/*.spec.js'",
"integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 'dist-esm/**/*.spec.js'",
"integration-test:node:no-timeout": "dev-tool run test:node-js-input -- --timeout 9999999 'dist-esm/**/*.spec.js'",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
"lint": "eslint package.json api-extractor.json src test --ext .ts",
Expand Down
1 change: 0 additions & 1 deletion sdk/keyvault/keyvault-keys/test/public/utils/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export async function assertThrowsAbortError(cb: () => Promise<any>): Promise<vo
} catch (e: any) {
console.log(`name: ${e.name}, message: ${e.message}`);
assert.equal(e.name, "AbortError");
assert.equal(e.message, "The operation was aborted.");
}
if (passed) {
throw new Error("Expected cb to throw an AbortError");
Expand Down

0 comments on commit b6dbf73

Please sign in to comment.