xxxRevert "More test cases"

This reverts commit b2c24fab4f.
This commit is contained in:
Steve Faulkner 2020-09-29 17:46:54 -05:00
parent b2c24fab4f
commit 0c7a73e716

View File

@ -16,8 +16,6 @@ test.each`
${"https://main.documentdb.ext.microsoftazure.de"} | ${false} ${"https://main.documentdb.ext.microsoftazure.de"} | ${false}
${"https://random.domain"} | ${true} ${"https://random.domain"} | ${true}
${"https://malicious.cloudapp.azure.com"} | ${true} ${"https://malicious.cloudapp.azure.com"} | ${true}
${"https://maliciousazure.com"} | ${true}
${"https://maliciousportalsazure.com"} | ${true}
`("returns $expected when called with $domain", ({ domain, expected }) => { `("returns $expected when called with $domain", ({ domain, expected }) => {
expect(isInvalidParentFrameOrigin({ origin: domain } as MessageEvent)).toBe(expected); expect(isInvalidParentFrameOrigin({ origin: domain } as MessageEvent)).toBe(expected);
}); });