mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Remove temp folders after tests
This commit is contained in:
parent
fa3471f527
commit
66a9cbb7d9
6 changed files with 30 additions and 15 deletions
|
@ -32,6 +32,9 @@ var _ = Describe("MediaStreamer", func() {
|
|||
Eventually(func() bool { return testCache.Ready(context.TODO()) }).Should(BeTrue())
|
||||
streamer = NewMediaStreamer(ds, ffmpeg, testCache)
|
||||
})
|
||||
AfterEach(func() {
|
||||
_ = os.RemoveAll(conf.Server.DataFolder)
|
||||
})
|
||||
|
||||
Context("NewStream", func() {
|
||||
It("returns a seekable stream if format is 'raw'", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue