mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-24 07:23:24 +02:00
Adjust sprite test to not think REUSE.toml is a sprite json
This commit is contained in:
parent
41794cdab3
commit
025a2c6bd0
@ -49,7 +49,8 @@ describe("check if every variant's sprite are correctly set", () => {
|
||||
const trimmedFilePath = `${trimmedDirpath}${filename}`;
|
||||
const ext = filename.split(".")[1];
|
||||
const name = filename.split(".")[0];
|
||||
if (excludes.includes(name)) {
|
||||
// skip REUSE.toml files
|
||||
if (excludes.includes(name) || ext === "toml") {
|
||||
continue;
|
||||
}
|
||||
if (name.includes("_")) {
|
||||
|
Loading…
Reference in New Issue
Block a user