Skip to content

Commit 8639b68

Browse files
authored
[language text] Skip healthcare tasks (Azure#25594)
1 parent 2c11712 commit 8639b68

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sdk/cognitivelanguage/ai-language-text/test/public/analyzeBatch.spec.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,8 @@ matrix([["APIKey", "AAD"]] as const, async (authMethod: AuthMethod) => {
620620
);
621621
});
622622

623-
it("big document causes a warning", async function () {
623+
// TODO: Unskip when hear back from service team on 'DocumentTruncated' warning
624+
it.skip("big document causes a warning", async function () {
624625
let text = "";
625626
for (let i = 0; i < 5121; ++i) {
626627
text = text + "x";
@@ -884,7 +885,8 @@ matrix([["APIKey", "AAD"]] as const, async (authMethod: AuthMethod) => {
884885
await assertActionsResults(await poller.pollUntilDone(), expectation15);
885886
});
886887

887-
it("whole batch input with auto language detection", async function () {
888+
// TODO: Unskip when hear back from service team on 'isLanguageDefaulted' property
889+
it.skip("whole batch input with auto language detection", async function () {
888890
const docs = [
889891
"I will go to the park.",
890892
"Este es un document escrito en Español.",

0 commit comments

Comments
 (0)