Remove temp folders after tests

This commit is contained in:
Deluan 2021-10-28 10:40:31 -04:00
parent fa3471f527
commit 66a9cbb7d9
6 changed files with 30 additions and 15 deletions

View file

@ -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() {