Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && ccov OR os == 'android'
- Manifest: browser/extensions/formautofill/test/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function test_getCreditCardLogo() {
const { CreditCard } = ChromeUtils.importESModule(
"resource://gre/modules/CreditCard.sys.mjs"
);
// Credit card logos can be either PNG or SVG
// so we construct an array that includes both of these file extensions
// and test to see if the logo from getCreditCardLogo matches.
for (let network of CreditCard.getSupportedNetworks()) {
let actual = CreditCard.getCreditCardLogo(network);
Assert.ok(
[".png", ".svg"].map(x => PATH_PREFIX + network + x).includes(actual)
);
}
let genericLogo = CreditCard.getCreditCardLogo("null");
Assert.equal(
genericLogo,
);
});