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/language_detection/canDetect.tentative.window.html - WPT Dashboard Interop Dashboard
// META: title=canDetect
'use strict';
promise_test(async t => {
const canDetect = await translation.canDetect();
assert_greater_than(canDetect.length, 0);
assert_not_equals(canDetect, "no");
});