This commit is contained in:
v-admahe 2021-01-13 16:51:38 +05:30
Родитель 2b4259181d
Коммит e0e5bf7f17
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -15,8 +15,8 @@ export async function IsValidLogo(FileName: string): Promise<ExitCode> {
return ExitCode.SUCCESS;
}
let fileTypeSuffixes = undefined;
let filePathFolderPrefixes = ["logo"];
let fileTypeSuffixes = ["*."];
let filePathFolderPrefixes = ["logos"];
let fileKinds = ["Added","Modified"];
let CheckOptions = {
onCheckFile: (filePath: string) => {

Просмотреть файл

@ -6,7 +6,7 @@ import { ExitCode } from "../../utils/exitCode";
chai.use(chaiAsPromised);
describe("logoValidator", () => {
it("Should not throw an exception as logo file should be in svg format", async () => {
it("Should pass when logo file is in svg format", async () => {
await checkValid(".script/tests/logoValidatorTest/testFiles/Morphisec_Logo.svg");
});
@ -34,11 +34,11 @@ describe("logoValidator", () => {
await checkInvalid(".script/tests/logoValidatorTest/testFiles/FileWithInvalidGuidId.svg","logoValidationError");
});
it("Should throw an exception as logo file should not have same id of two tag", async () => {
it("Should pass when there is same id for two tag ", async () => {
await checkInvalid(".script/tests/logoValidatorTest/testFiles/FileWithSameGuidID.svg","logoValidationError");
});
it("Should not throw an exception as logo file should not have embed png", async () => {
it("Should pass when logo file has embed png", async () => {
await checkValid(".script/tests/logoValidatorTest/testFiles/filewithoutpngembed.svg");
});
it("Should throw an exception as logo file should be of less then or equal to 5 kb", async () => {