Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/event.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect, Locator } from '@playwright/test'

async function verifyNotionIframe(eventsContainer: Locator) {
const notionIframe: Locator = eventsContainer.locator('iframe')
await expect(notionIframe).toHaveAttribute('src', 'https://women-in-software.notion.site/ebd/61cb6a1a3b93470687ca1f6c2628da1b')
await expect(notionIframe).toHaveAttribute('src', 'https://women-in-software.notion.site/ebd/Community-Sponsorship-61cb6a1a3b93470687ca1f6c2628da1b')
}

test('shows the events in English', async ({ page }) => {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Event/Event.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Event: FC = () => {
<Stack spacing={2}>
{sponsorinEventTitle}
<iframe
src="https://women-in-software.notion.site/ebd/61cb6a1a3b93470687ca1f6c2628da1b"
src="https://women-in-software.notion.site/ebd/Community-Sponsorship-61cb6a1a3b93470687ca1f6c2628da1b"
width="100%"
height="600"
/>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Wiki/Wiki.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Wiki: FC = () => {
</Typography>
<iframe
title={String(t('wiki.description') || '')}
src="https://women-in-software.notion.site/ebd/d2c50cd1917c4771a1c80280e1736b19"
src="https://women-in-software.notion.site/ebd/Women-in-Software-Engineering-JP-Public-Wiki-d2c50cd1917c4771a1c80280e1736b19"
width="100%"
height="600"
allow="fullscreen"
Expand Down
1 change: 1 addition & 0 deletions src/routes/Wiki/__test__/Wiki.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ describe('Wiki', () => {
expect(title).toBeVisible()
const iframeElement = screen.getByTitle('Women in Software Engineering Japan Public Wiki on Notion')
expect(iframeElement).toBeVisible()
expect(iframeElement).toHaveAttribute('src', 'https://women-in-software.notion.site/ebd/Women-in-Software-Engineering-JP-Public-Wiki-d2c50cd1917c4771a1c80280e1736b19')
})
})
Loading