Disable impacted translation tests (#707)

This commit is contained in:
Glenn Harper 2023-08-02 20:12:06 -04:00 коммит произвёл GitHub
Родитель 5a2c5eaf84
Коммит 83c3c66a9b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 18 добавлений и 9 удалений

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

@ -152,7 +152,8 @@ describe.each([false])("Service based tests", (forceNodeWebSocket: boolean) => {
ServiceRecognizerBase.telemetryData = undefined;
});
test("RecognizeOnceAsync1", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
test.skip("RecognizeOnceAsync1", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: RecognizeOnceAsync1");
const s: sdk.SpeechTranslationConfig = sdk.SpeechTranslationConfig.fromSubscription(Settings.SpeechSubscriptionKey, Settings.SpeechRegion);
@ -440,8 +441,9 @@ describe.each([false])("Service based tests", (forceNodeWebSocket: boolean) => {
r.stopContinuousRecognitionAsync(() => done(), (error: string) => done(error));
});
});
test("InitialSilenceTimeout (pull)", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
test.skip("InitialSilenceTimeout (pull)", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: InitialSilenceTimeout (pull)");
let p: sdk.PullAudioInputStream;
@ -472,7 +474,8 @@ describe.each([false])("Service based tests", (forceNodeWebSocket: boolean) => {
});
}, 20000);
test("InitialSilenceTimeout (push)", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
test.skip("InitialSilenceTimeout (push)", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: InitialSilenceTimeout (push)");
const p: sdk.PushAudioInputStream = sdk.AudioInputStream.createPushStream();
@ -485,7 +488,9 @@ describe.each([false])("Service based tests", (forceNodeWebSocket: boolean) => {
testInitialSilenceTimeout(config, done);
}, 15000);
Settings.testIfDOMCondition("InitialSilenceTimeout (File)", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
// Settings.testIfDOMCondition("InitialSilenceTimeout (File)", (done: jest.DoneCallback) => {
test.skip("InitialSilenceTimeout (File)", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: InitialSilenceTimeout (File)");
const audioFormat: AudioStreamFormatImpl = sdk.AudioStreamFormat.getDefaultInputFormat() as AudioStreamFormatImpl;
@ -729,7 +734,8 @@ describe.each([false])("Service based tests", (forceNodeWebSocket: boolean) => {
});
}, 15000);
test("Silence After Speech", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
test.skip("Silence After Speech", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: Silence After Speech");
// Pump valid speech and then silence until at least one speech end cycle hits.
@ -813,7 +819,8 @@ describe.each([false])("Service based tests", (forceNodeWebSocket: boolean) => {
});
}, 35000);
test("Silence Then Speech", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
test.skip("Silence Then Speech", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: Silence Then Speech");
// Pump valid speech and then silence until at least one speech end cycle hits.
@ -906,7 +913,8 @@ describe.each([false])("Service based tests", (forceNodeWebSocket: boolean) => {
}, 35000);
});
test("Multiple Phrase Latency Reporting", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
test.skip("Multiple Phrase Latency Reporting", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: Multiple Phrase Latency Reporting");

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

@ -360,7 +360,8 @@ test("TranslateVoiceUSToGerman", (done: jest.DoneCallback) => {
});
}, 10000);
test("MultiPhrase", (done: jest.DoneCallback) => {
// TODO: fix and re-enable (Translation service change)
test.skip("MultiPhrase", (done: jest.DoneCallback) => {
// eslint-disable-next-line no-console
console.info("Name: MultiPhrase");
const s: sdk.SpeechTranslationConfig = BuildSpeechConfig();