updated tests

This commit is contained in:
2024-03-11 11:08:03 +03:00
parent 4831e7431b
commit d9e53719bd
3 changed files with 6 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ describe('tests for ServiceOfServices', () => {
test('test of fetchServicesList', async () => {
const serviceOfServices = new ServiceOfServices(adapterOfServices, store)
await serviceOfServices.fetchServicesList()
await serviceOfServices.fetchServices()
const usersList = store.getters['services/servicesList']

View File

@@ -57,7 +57,7 @@ describe("tests App mounted with vuex", () => {
"is_active": true
}])
expect(componentState).toEqual('active')
expect(selectedService).not.toBe(null)
expect(selectedService).toBe(null)
expect(answer).toBe("ok")
})
})