Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function test_getCreditCardLogo() {
const { CreditCard } = ChromeUtils.importESModule(
);
// 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,
);
});