generated from nhcarrigan/template
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m27s
22 lines
436 B
TypeScript
22 lines
436 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { TestBed } from "@angular/core/testing";
|
|
import { ApiService } from "./api.service";
|
|
|
|
describe("ApiService", () => {
|
|
let service: ApiService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(ApiService);
|
|
});
|
|
|
|
it("should be created", () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|