mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 16:35:03 +01:00
Add basic testsuite using ui_test
This commit is contained in:
parent
1551847d8c
commit
b68d775671
13 changed files with 1524 additions and 79 deletions
|
|
@ -20,12 +20,20 @@
|
|||
{
|
||||
devShells = forAllSystems ({ pkgs }: {
|
||||
default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
rustup
|
||||
];
|
||||
packages = with pkgs; [
|
||||
nodejs-18_x # Node.js 18, plus npm, npx, and corepack
|
||||
wasmtime
|
||||
wasm-tools
|
||||
binaryen
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
|
||||
export PATH=$PATH:''${RUSTUP_HOME:-~/.rustup}/toolchains/$RUSTC_VERSION-x86_64-unknown-linux-gnu/bin/
|
||||
'';
|
||||
};
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue