added UUIDs of containers to site assignments

This commit is contained in:
Kendall Werts
2020-01-13 17:27:29 -06:00
parent 33909d147a
commit 26028cac20
5 changed files with 168 additions and 147 deletions
+3 -5
View File
@@ -25,11 +25,9 @@ describe("External Webextensions", () => {
const [promise] = background.browser.runtime.onMessageExternal.addListener.yield(message, sender);
const answer = await promise;
expect(answer).to.deep.equal({
hostname: "example.com",
userContextId: "1",
neverAsk: false
});
expect(answer.userContextId === "1").to.be.true;
expect(answer.neverAsk === false).to.be.true;
expect(answer.hasOwnProperty("identityMacAddonUUID")).to.be.true;
});
});