We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52d1cfb commit 557f893Copy full SHA for 557f893
scripts/test.js
@@ -2,6 +2,7 @@
2
const cp = require("child_process");
3
const path = require("path");
4
const fs = require("fs");
5
+const os = require("os");
6
const { rescript_exe } = require("#cli/bin_path");
7
8
const duneBinDir = require("./dune").duneBinDir;
@@ -125,6 +126,8 @@ async function runTests() {
125
126
if (runtimeDocstrings) {
127
if (process.platform === "win32") {
128
console.log(`Skipping docstrings tests on ${process.platform}`);
129
+ } else if (process.platform === "darwin" && os.release().startsWith("22")) {
130
+ console.log("Skipping docstrings tests on macOS 13")
131
} else {
132
console.log("Running runtime docstrings tests");
133
0 commit comments