summaryrefslogtreecommitdiff
path: root/tests/basic-functionality.Tests.ps1
diff options
context:
space:
mode:
authornzbr <mail@nzbr.de>2023-09-29 23:25:53 +0200
committerGitHub <noreply@github.com>2023-09-29 23:25:53 +0200
commit8735bdfa5fdfa6e90d944ff9f5f806668b53eacb (patch)
tree64148d00bbc6f8e1d7ba099cfbf31123113db2f8 /tests/basic-functionality.Tests.ps1
parente7d93d0f478b6fbb47c00d03449dc3d08b90abb7 (diff)
parentff1413aa34c525bf01145b40b99acfb7868ab285 (diff)
Merge pull request #295 from nix-community/prep-release
New release preparation
Diffstat (limited to 'tests/basic-functionality.Tests.ps1')
-rw-r--r--tests/basic-functionality.Tests.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basic-functionality.Tests.ps1 b/tests/basic-functionality.Tests.ps1
index d62823b..9459b15 100644
--- a/tests/basic-functionality.Tests.ps1
+++ b/tests/basic-functionality.Tests.ps1
@@ -7,7 +7,7 @@ Describe "Basic Functionality" {
$distro = Install-Distro
}
- It "is possible to run a command through the installer" {
+ It "is possible to run a command in the container" {
$distro.Launch("nixos-version")
$LASTEXITCODE | Should -Be 0
}
@@ -34,7 +34,7 @@ Describe "Basic Functionality" {
}
It "is possible to run a command through nix run" {
- $distro.Launch("nix run nixpkgs#neofetch")
+ $distro.Launch("nix --extra-experimental-features 'nix-command flakes' run nixpkgs#neofetch")
$LASTEXITCODE | Should -Be 0
}