Skip to content

Commit

Permalink
accidently removed creation of temp folder needed for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Acetolyne committed Jan 4, 2024
1 parent 95d1247 commit 71321c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# flowcat 4.0.0
# flowcat v4.0.0


## Flowcat helps developers bring their todo tasks forward to the user so you don't need to waste time looking for them. It provides a clear overview of your tasks and allows you to stay focused on your work. You can also output to a file for planning purposes or to separate tasks into different categories
Expand Down
6 changes: 6 additions & 0 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ func TestPre(t *testing.T) {
if err != nil {
t.Fatal("[PRE-TEST][BIN FOLDER] creating the folder bin/flowcat-linux-amd64 failed", err.Error())
}

//Create tmp file folder
err = os.MkdirAll("tests/files", 0775)
if err != nil {
t.Fatal("Could not perform pre-test actions, creating the tmp file folder failed", err.Error())
}
}

// func TestCfg(t *testing.T) {
Expand Down

0 comments on commit 71321c9

Please sign in to comment.