Skip to content

Commit aa890aa

Browse files
committed
fix
1 parent e5335dc commit aa890aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/docstrings_examples/DocTest.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,10 +393,10 @@ let main = async () => {
393393
switch value {
394394
| Some(index) =>
395395
let c = Array.getUnsafe(chuncks, index)
396-
Console.log2(index, Array.length(chuncks))
397396
let a =
398397
await c
399398
->Array.map(async example => {
399+
Console.log3(index, Array.length(chuncks), example.id)
400400
let id = example.id->String.replaceAll(".", "__")
401401
let rescriptCode = example->getCodeBlocks
402402
if String.trim(rescriptCode)->String.length === 0 {

tests/docstrings_examples/DocTest.res.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,8 @@ async function main() {
402402
$$break = match.done;
403403
if (value !== undefined) {
404404
let c = chuncks[value];
405-
console.log(value, chuncks.length);
406405
let a = await Promise.all(c.map(async example => {
406+
console.log(value, chuncks.length, example.id);
407407
let id = example.id.replaceAll(".", "__");
408408
let rescriptCode = getCodeBlocks(example);
409409
if (rescriptCode.trim().length === 0) {

0 commit comments

Comments
 (0)