about summary refs log tree commit diff
path: root/pkgs/development/interpreters/spidermonkey/test.nix
blob: c3ef92bebfa8f2532996e32258d4a0cedb3f1857 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ runCommand, spidermonkey }:

runCommand "spidermonkey-test-run" {
  nativeBuildInputs = [
    spidermonkey
  ];
} ''
  diff -U3 --color=auto <(js <(echo "console.log('Hello, world\!')")) <(echo 'Hello, world!')
  touch $out
''