summaryrefslogtreecommitdiff
path: root/tests/basic-functionality.Tests.ps1
diff options
context:
space:
mode:
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
}