Skip to content

Commit 4737f5a

Browse files
authored
Merge pull request #23 from europanite/feature/tests
Feature/tests
2 parents 836d21e + 795709f commit 4737f5a

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

assets/images/web_ui.png

6.19 KB
Loading

frontend/app/__tests__/home.screen.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe("HomeScreen", () => {
2121

2222
it("renders title and buttons", async () => {
2323
render(<HomeScreen />);
24-
expect(await screen.findByText("Python Front")).toBeInTheDocument();
24+
expect(await screen.findByText("Browser Based Python")).toBeInTheDocument();
2525
expect(screen.getByText("Run")).toBeInTheDocument();
2626
expect(screen.getByText("Clear")).toBeInTheDocument();
2727
});

frontend/app/screens/HomeScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export default function HomeScreen() {
214214
textDecorationLine: "underline"
215215
}}
216216
>
217-
Python Front
217+
Browser Based Python
218218
</a>
219219
</h1>
220220
<Stack

0 commit comments

Comments
 (0)