-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/COS301-SE-2024/occupi in…
…to develop
- Loading branch information
Showing
7 changed files
with
110 additions
and
50 deletions.
There are no files selected for viewing
Binary file not shown.
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
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
42 changes: 21 additions & 21 deletions
42
frontend/occupi-web/src/components/headerComponent/Header.test.tsx
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
import { expect, test } from "bun:test"; | ||
import { render } from "@testing-library/react"; | ||
import HeaderComponent from "./Header"; | ||
// import { expect, test } from "bun:test"; | ||
// import { render } from "@testing-library/react"; | ||
// import HeaderComponent from "./Header"; | ||
|
||
test("HeaderComponent renders with default props", () => { | ||
const { getByText } = render(<HeaderComponent />); | ||
expect(getByText("Hi Guest 👋")).toBeDefined(); | ||
expect(getByText("Welcome to Occupi")).toBeDefined(); | ||
expect(getByText("Office bookings")).toBeDefined(); | ||
}); | ||
// test("HeaderComponent renders with default props", () => { | ||
// const { getByText } = render(<HeaderComponent />); | ||
// expect(getByText("Hi Guest 👋")).toBeDefined(); | ||
// expect(getByText("Welcome to Occupi")).toBeDefined(); | ||
// expect(getByText("Office bookings")).toBeDefined(); | ||
// }); | ||
|
||
test("HeaderComponent renders with custom props", () => { | ||
const { getByText } = render( | ||
<HeaderComponent | ||
greeting="Hello" | ||
welcomeMessage="Welcome back" | ||
actionText="Book now" | ||
/> | ||
); | ||
expect(getByText("Hello Guest 👋")).toBeDefined(); | ||
expect(getByText("Welcome back")).toBeDefined(); | ||
expect(getByText("Book now")).toBeDefined(); | ||
}); | ||
// test("HeaderComponent renders with custom props", () => { | ||
// const { getByText } = render( | ||
// <HeaderComponent | ||
// greeting="Hello" | ||
// welcomeMessage="Welcome back" | ||
// actionText="Book now" | ||
// /> | ||
// ); | ||
// expect(getByText("Hello Guest 👋")).toBeDefined(); | ||
// expect(getByText("Welcome back")).toBeDefined(); | ||
// expect(getByText("Book now")).toBeDefined(); | ||
// }); |
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
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
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