nu-std 0.112.1

The standard library of Nushell
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Mark command as a test
export alias "attr test" = echo

# Mark a test command to be ignored
export alias "attr ignore" = echo

# Mark a command to be run before each test
export alias "attr before-each" = echo

# Mark a command to be run once before all tests
export alias "attr before-all" = echo

# Mark a command to be run after each test
export alias "attr after-each" = echo

# Mark a command to be run once after all tests
export alias "attr after-all" = echo