[identity] Bump vitest hook/test timeout (#31841)

### Packages impacted by this PR

- @azure/identity

### Issues associated with this PR


### Describe the problem that is addressed by this PR

Bumps the `hookTimeout` and `testTimeout` for @azure/identity tests.

### What are the possible designs available to address the problem? If
there are more than one possible design, why was the one in this PR
chosen?


### Are there test cases added in this PR? _(If not, why?)_


### Provide a list of related PRs _(if any)_


### Command used to generate this PR:**_(Applicable only to SDK release
request PRs)_

### Checklists
- [ ] Added impacted package name to the issue description
- [ ] Does this PR needs any fixes in the SDK Generator?** _(If so,
create an Issue in the
[Autorest/typescript](https://github.com/Azure/autorest.typescript)
repository and link it here)_
- [ ] Added a changelog (if necessary)
This commit is contained in:
Matthew Podwysocki 2024-11-19 13:35:07 -05:00 коммит произвёл GitHub
Родитель 18fe8bfc3f
Коммит 6ba62e82a7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -10,6 +10,8 @@ export default mergeConfig(
test: {
include: ["dist-test/browser/test/**/*.spec.js"],
exclude: ["dist-test/browser/test/snippets.spec.js"],
hookTimeout: 500000,
testTimeout: 500000,
},
}),
);

Просмотреть файл

@ -14,6 +14,8 @@ export default mergeConfig(
"test/snippets.spec.ts",
"test/integration/**/*.spec.ts",
],
hookTimeout: 500000,
testTimeout: 500000,
},
}),
);

Просмотреть файл

@ -9,6 +9,8 @@ export default mergeConfig(
defineConfig({
test: {
include: ["test/integration/**/*.spec.ts"],
hookTimeout: 500000,
testTimeout: 500000,
},
}),
);