-
-
Save StephenFluin/de96c9f1869b497c8f7a373ab8f12280 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it("should switch to bug report template", async () => { | |
expect(fixture.debugElement.query("bug-report-form")).toBeNull(); | |
const select = await loader.getHarness(MatSelect); | |
await select.clickOptions({ text: "Bug" }); | |
expect(fixture.debugElement.query("bug-report-form")).not.toBeNull(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment