summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/subapps/remove-success.tentative.https.html
blob: a4148fd869c43d1168da738dfceb76484b20912c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<title>Sub Apps: Valid calls for remove()</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/subapps-helpers.js"></script>
<script>

subapps_test(async (t, mockSubAppsService) => {
  await navigator.subApps.remove('/sub/app/id');
}, 'Remove API call works.');

</script>