mte/unikernel/duniverse/dune_/test/blackbox-tests/test-cases/melange/unmangling.t
2025-11-11 02:07:51 +01:00

33 lines
583 B
Raku

Test unmangling of js files
$ cat > dune-project <<EOF
> (lang dune 3.8)
> (using melange 0.1)
> EOF
$ cat > dune <<EOF
> (melange.emit
> (target output)
> (emit_stdlib false)
> (alias mel))
> EOF
Using uppercase produces uppercase artifacts
$ cat > Upper.ml <<EOF
> print_endline "hello"
> EOF
$ dune build output/Upper.js
$ node _build/default/output/Upper.js
hello
Using lowercase produces uppercase artifacts
$ cat > lower.ml <<EOF
> print_endline "hello"
> EOF
$ dune build @mel
$ node _build/default/output/lower.js
hello