diff options
author | Philip McGrath <philip@philipmcgrath.com> | 2022-05-18 14:11:13 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-22 01:07:55 +0200 |
commit | 297ae57bed14abc5f949f36e6b98bad0f5a86993 (patch) | |
tree | 42fd1a28971ca47dd15a65237cb7279a56c920ae | |
parent | gnu: Add elm-random. (diff) | |
download | guix-297ae57bed14abc5f949f36e6b98bad0f5a86993.tar.gz guix-297ae57bed14abc5f949f36e6b98bad0f5a86993.tar.bz2 guix-297ae57bed14abc5f949f36e6b98bad0f5a86993.tar.xz |
gnu: Add elm-explorations-test.
* gnu/packages/elm.scm (elm-explorations-test): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/elm.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/elm.scm b/gnu/packages/elm.scm index c2e4b65b77..edd13a0b8a 100644 --- a/gnu/packages/elm.scm +++ b/gnu/packages/elm.scm | |||
@@ -578,3 +578,28 @@ of rendered elements.") | |||
578 | "Need to generate random numbers? How about random game boards? Or | 578 | "Need to generate random numbers? How about random game boards? Or |
579 | random positions in 3D space? This is the package for you!") | 579 | random positions in 3D space? This is the package for you!") |
580 | (license license:bsd-3))) | 580 | (license license:bsd-3))) |
581 | |||
582 | (define-public elm-explorations-test | ||
583 | (package | ||
584 | (name "elm-explorations-test") | ||
585 | (version "1.2.2") | ||
586 | (source | ||
587 | (elm-package-origin | ||
588 | "elm-explorations/test" | ||
589 | version | ||
590 | (base32 "0kw32x0lr6nh5j9xk56vgg7x7c705g38grghh7cdp49frwdd6w3l"))) | ||
591 | (build-system elm-build-system) | ||
592 | (propagated-inputs | ||
593 | (list elm-virtual-dom | ||
594 | elm-random | ||
595 | elm-json | ||
596 | elm-html | ||
597 | elm-core)) | ||
598 | (home-page | ||
599 | "https://package.elm-lang.org/packages/elm-explorations/test/1.2.2") | ||
600 | (synopsis "Testing framework for Elm") | ||
601 | (description "This package enables writing unit and fuzz tests for Elm | ||
602 | code. To actually run the tests, you need the command-line tool from | ||
603 | @url{https://github.com/rtfeldman/node-test-runner}, which has not yet been | ||
604 | packaged for Guix.") | ||
605 | (license license:bsd-3))) | ||