You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/docstring_tests/DocTest.res.mjs
+13-6Lines changed: 13 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -23,11 +23,17 @@ import * as RescriptTools_Docgen from "rescript/lib/es6/RescriptTools_Docgen.js"
23
23
24
24
letnodeVersion=Stdlib_Option.getExn(Stdlib_Int.fromString(Stdlib_Option.getExn(process.version.replace("v","").split(".")[0],"Failed to find major version of Node"),undefined),"Failed to convert node version to Int");
25
25
26
-
letignoreRuntimeTests=[[
27
-
18,
26
+
letignoreRuntimeTests=[
27
+
[
28
+
20,
28
29
[
29
30
"Stdlib.Array.toReversed",
30
-
"Stdlib.Array.toSorted",
31
+
"Stdlib.Array.toSorted"
32
+
]
33
+
],
34
+
[
35
+
22,
36
+
[
31
37
"Stdlib.Promise.withResolvers",
32
38
"Stdlib.Set.union",
33
39
"Stdlib.Set.isSupersetOf",
@@ -37,7 +43,8 @@ let ignoreRuntimeTests = [[
37
43
"Stdlib.Set.symmetricDifference",
38
44
"Stdlib.Set.difference"
39
45
]
40
-
]];
46
+
]
47
+
];
41
48
42
49
functiongetOutput(buffer){
43
50
returnbuffer.map(e=>e.toString()).join("");
@@ -60,7 +67,7 @@ async function extractDocFromFile(file) {
0 commit comments