Skip to content

Commit

Permalink
chore(springwolf-ui): re-add smoke-test for complete app
Browse files Browse the repository at this point in the history
Co-authored-by: Timon Back <[email protected]>
  • Loading branch information
sam0r040 and timonback committed Dec 13, 2024
1 parent 31bcf2c commit 553d0c2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions springwolf-ui/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* SPDX-License-Identifier: Apache-2.0 */
import {AppComponent} from "./app.component";
import {render, screen} from "@testing-library/angular";
import {appConfig} from "./app.config";


describe("AppComponent", () => {
test("should render", async () => {
await render(AppComponent, {
providers: appConfig.providers
});

expect(screen.getByText("Springwolf"));
});
});

0 comments on commit 553d0c2

Please sign in to comment.