fix: Remove redundant only statement from backend tests

This commit is contained in:
Faruk AYDIN
2024-01-12 14:22:19 +01:00
parent 9d269b8111
commit f62c17de0b

View File

@@ -41,7 +41,7 @@ describe('graphQL getTrialStatus query', () => {
userToken = createAuthTokenByUserId(user.id);
});
describe.only('and with cloud flag disabled', () => {
describe('and with cloud flag disabled', () => {
beforeEach(async () => {
vi.spyOn(appConfig, 'isCloud', 'get').mockReturnValue(false);
});