You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
352 B

2 years ago
import { TestBed } from '@angular/core/testing';
import { UsersService } from './users.service';
2 years ago
describe('UsersService', () => {
let service: UsersService;
2 years ago
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(UsersService);
2 years ago
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});