From 100aca6a1e2e7b0c4e17ee299d7f587543907b3e Mon Sep 17 00:00:00 2001 From: Deluan Date: Sat, 4 Jan 2020 21:33:41 -0500 Subject: [PATCH] Disable flaky test (time-based) --- engine/scrobbler_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/scrobbler_test.go b/engine/scrobbler_test.go index dee58a21c..5c4e6bda3 100644 --- a/engine/scrobbler_test.go +++ b/engine/scrobbler_test.go @@ -64,7 +64,8 @@ func TestScrobbler(t *testing.T) { Convey("And it saves the song as the one current playing", func() { info, _ := npRepo.Head(1) So(info.TrackId, ShouldEqual, "2") - So(info.Start, ShouldHappenBefore, time.Now()) + // Commenting out time sensitive test, due to flakiness + // So(info.Start, ShouldHappenBefore, time.Now()) So(info.Username, ShouldEqual, "deluan") So(info.PlayerName, ShouldEqual, "DSub") })