remove the tests

This reverts commits:
- e3e2a077be
- 6404d0e2c4
- ad3e8de25b
- 507f4bda44
This commit is contained in:
amtoine 2023-04-04 18:44:37 +02:00
parent e3e2a077be
commit 6028b98483
No known key found for this signature in database
GPG Key ID: 37AAE9B486CFF1AB
2 changed files with 0 additions and 15 deletions

View File

@ -115,9 +115,6 @@ jobs:
# as part of #8525.
run: cargo install --path . --locked --no-default-features
- name: System dependencies
run: sudo apt install -y xclip
- name: Standard library tests
run: nu crates/nu-utils/standard_library/tests.nu

View File

@ -22,15 +22,3 @@ export def test_path_add [] {
assert equal $env.PATH ["fooooo", "foo", "bar", "baz"]
}
}
export def test_clip_simple_string [] {
use std.nu clip
"foo" | clip --silent --no-notify
}
export def test_clip_structured_data [] {
use std.nu clip
open Cargo.toml | get package | clip --silent --no-notify
}