Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 3 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /ai/translator/translator_bad_input.tentative.https.any.html - WPT Dashboard Interop Dashboard
- /ai/translator/translator_bad_input.tentative.https.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /ai/translator/translator_bad_input.tentative.https.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /ai/translator/translator_bad_input.tentative.https.any.worker.html - WPT Dashboard Interop Dashboard
// META: title=translator.create without options do not crash
// META: global=window,worker
// META: timeout=long
//
// Setting `timeout=long` as this test may require downloading the translation
// library and the language models.
'use strict';
promise_test(async t => {
await promise_rejects_js(
t, TypeError, Translator.create(/*empty options*/));
}, 'Translator.create rejects with TypeError if no options are passed.');
promise_test(async t => {
await promise_rejects_js(
t, TypeError, Translator.create({sourceLanguage: 'en'}));
}, 'Translator.create rejects with TypeError targetLanguage is not provided.');
promise_test(async t => {
await promise_rejects_js(
t, TypeError, Translator.create({targetLanguage: 'en'}));
}, 'Translator.create rejects with TypeError sourceLanguage is not provided.');