generated from nhcarrigan/template
30 lines
744 B
TypeScript
30 lines
744 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
import { type ComponentFixture, TestBed } from "@angular/core/testing";
|
|
import { describe, beforeEach, it, expect } from "vitest";
|
|
import { Reviews } from "./reviews";
|
|
|
|
describe("reviews", () => {
|
|
let component: Reviews;
|
|
let fixture: ComponentFixture<Reviews>;
|
|
|
|
beforeEach(async() => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [ Reviews ],
|
|
}).
|
|
compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Reviews);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it("should create", () => {
|
|
expect.assertions(1);
|
|
expect(component, "did not compile").toBeTruthy();
|
|
});
|
|
});
|