update formats and format code

This commit is contained in:
Tristan 2024-01-03 06:54:28 +00:00
parent 3faf0e6354
commit bee204701e
4 changed files with 14 additions and 9 deletions

View file

@ -11,9 +11,9 @@
in
describe "watch" [
(it "contains the command" {
actual = builtins.match ".*(run me).*" ( watch {
cmd = "run me";
} );
actual = builtins.match ".*(run me).*" (watch {
cmd = "run me";
});
expected = ["run me"];
})
]