blob: e0a02e87c4ff5fca9593e438acb9b64014e565d2 [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="file:///gen/layout_test_data/mojo/public/js/mojo_bindings.js"></script>
<script src="file:///gen/third_party/WebKit/public/platform/modules/installedapp/installed_app_provider.mojom.js"></script>
<script src="resources/installedapp-test-helper.js"></script>
<script>
installedapp_test((t, mock) => {
// With no manifest, expect the Mojo call to FilterInstalledApps to be empty,
// and return an empty list.
mock.pushExpectedCall([], []);
return navigator.getInstalledRelatedApps().then(result => {
assert_array_relatedapplication_equals(result, []);
});
}, 'getInstalledRelatedApps with no apps');
</script>