We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e349d75 commit d73e725Copy full SHA for d73e725
1 file changed
src/__tests__/test-protocols.test.ts
@@ -38,6 +38,11 @@ const extractAndValidate = async (protocolPath: string) => {
38
return await validateProtocol(protocol, schemaVersion);
39
};
40
41
+if (process.env.CI) {
42
+ console.log("Running in CI, skipping protocol tests");
43
+ process.exit(0);
44
+}
45
+
46
const PROTOCOL_PATH = "../../test-protocols";
47
const protocols = readdirSync(join(__dirname, PROTOCOL_PATH)).filter((file) =>
48
file.endsWith(".netcanvas"),
0 commit comments