it('should call GET account details with `id`', () => {
        $httpBackend.whenGET(`/${route}/${id}/account`).respond(() => [200, item]);

        employeeResource.getAccountDetails(`${id}`).then((respond) => {
            expect(respond.data).toEqual(item);