Handle the exclusion of SplitColourChannels correctly

This commit is contained in:
GCHQDeveloper581 2026-04-29 11:23:46 +00:00
parent f43a9df180
commit 6cb0b2bcfd
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -87,12 +87,14 @@ import TestRegister from "../lib/TestRegister.mjs";
`;
testObjs.forEach(obj => {
code += `import "./tests/${obj}.mjs";\n`;
if (obj !== 'SplitColourChannels')
code += `import "./tests/${obj}.mjs";\n`;
else
code += `// Cannot test operations that use the File type yet
// import "./tests/SplitColourChannels.mjs";\n`;
});
code += `
// Cannot test operations that use the File type yet
// import "./tests/SplitColourChannels.mjs";
const testStatus = {
allTestsPassing: true,