Skip to content

Commit 897711d

Browse files
committed
_
Signed-off-by: Sora Morimoto <[email protected]>
1 parent b9b3587 commit 897711d

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

tests/__snapshots__/extended.test.ts.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62045,6 +62045,8 @@ export type ReposDetailData = Repos;
6204562045

6204662046
export type ReposDetailOutput = TeamRepos;
6204762047

62048+
export type ReposDetailOutput1 = Repos;
62049+
6204862050
export interface ReposDetailParams {
6204962051
/** Name of organisation. */
6205062052
org: string;
@@ -62081,8 +62083,6 @@ export enum ReposDetailParams5TypeEnum {
6208162083

6208262084
export type ReposDetailResult = Repo;
6208362085

62084-
export type ReposDetailResult1 = Repos;
62085-
6208662086
export type ReposListData = Repos;
6208762087

6208862088
export interface ReposListParams {
@@ -68088,7 +68088,7 @@ export namespace Users {
6808868088
/** Is used to set specified media type. */
6808968089
Accept?: string;
6809068090
};
68091-
export type ResponseBody = ReposDetailResult1;
68091+
export type ResponseBody = ReposDetailOutput1;
6809268092
}
6809368093
/**
6809468094
* @description List repositories being starred by a user.
@@ -71802,7 +71802,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
7180271802
* @request GET:/users/{username}/repos
7180371803
*/
7180471804
reposDetail: ({ username, ...query }: ReposDetailParams4, params: RequestParams = {}) =>
71805-
this.request<ReposDetailResult1, void>({
71805+
this.request<ReposDetailOutput1, void>({
7180671806
path: \`/users/\${username}/repos\`,
7180771807
method: "GET",
7180871808
query: query,

vitest.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import { defineConfig } from "vitest/config";
22

33
export default defineConfig({
4-
test: {},
4+
test: {
5+
isolate: false,
6+
maxWorkers: 1,
7+
minWorkers: 1,
8+
},
59
});

0 commit comments

Comments
 (0)