Skip to content

Commit 83e14fe

Browse files
committed
Fixing flaky tests.
1 parent abcad2b commit 83e14fe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

server/service/hosts_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -1588,6 +1588,7 @@ func TestHostEncryptionKey(t *testing.T) {
15881588
})
15891589
}
15901590

1591+
// Fragile test: This test is fragile because of the large reliance on Datastore mocks. Consider refactoring test/logic or removing the test. It may be slowing us down more than helping us.
15911592
func TestHostMDMProfileDetail(t *testing.T) {
15921593
ds := new(mock.Store)
15931594
testCert, testKey, err := apple_mdm.NewSCEPCACertKey()
@@ -1635,6 +1636,12 @@ func TestHostMDMProfileDetail(t *testing.T) {
16351636
},
16361637
}, nil
16371638
}
1639+
ds.ScimUserByHostIDFunc = func(ctx context.Context, hostID uint) (*fleet.ScimUser, error) {
1640+
return nil, nil
1641+
}
1642+
ds.ListHostDeviceMappingFunc = func(ctx context.Context, id uint) ([]*fleet.HostDeviceMapping, error) {
1643+
return nil, nil
1644+
}
16381645

16391646
cases := []struct {
16401647
name string

0 commit comments

Comments
 (0)