Skip to content

Commit c7f59eb

Browse files
authoredJan 24, 2025··
[service-bus] Remove type checking only for service-bus (#32712)
### Packages impacted by this PR - @Azure/service-bus ### Issues associated with this PR ### Describe the problem that is addressed by this PR Adds back in type checking for all projects but disables it for service-bus due to some bug with vitest for now. ### 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)
1 parent 9b9b566 commit c7f59eb

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎sdk/servicebus/service-bus/vitest.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ export default mergeConfig(
2323
"Date",
2424
],
2525
},
26+
typecheck: {
27+
enabled: false,
28+
},
2629
},
2730
}),
2831
);

‎sdk/servicebus/service-bus/vitest.unit.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ export default mergeConfig(
2424
"Date",
2525
],
2626
},
27+
typecheck: {
28+
enabled: false,
29+
},
2730
},
2831
}),
2932
);

‎vitest.shared.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ export default defineConfig({
3535
reportsDirectory: "coverage",
3636
},
3737
typecheck: {
38-
include: ["test/snippets.spec.ts"],
3938
enabled: true,
4039
tsconfig: "tsconfig.test.json",
40+
include: ["test/**/*.ts", "test/**/*.mts", "test/**/*.cts"],
4141
},
4242
},
4343
});

0 commit comments

Comments
 (0)
Please sign in to comment.