Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /ai/translator/ai_translator_bad_input.tentative.https.window.html - WPT Dashboard Interop Dashboard
// META: title=translator.create without options do not crash
// 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 => {
const translatorFactory = ai.translator;
assert_not_equals(translatorFactory, null);
await promise_rejects_dom(t, 'InvalidStateError',translatorFactory.create(/*empty options*/),
'No options are provided.');
});