Skip to content

Commit 37fbd09

Browse files
committed
Remove expired EU notices and fix bare-pages FR Events test
The notices.md file had its entire body wrapped in an HTML comment with three old 2023-2024 announcements. When inlined into the parent MDX page the comment broke MDX parsing and caused a 500 on /bare/eu/usegalaxy/main/. Cleared the file since the content is long expired. Also fixed the FR Events test which became ambiguous after a second h2 appeared on the page.
1 parent d5126e0 commit 37fbd09

File tree

2 files changed

+1
-33
lines changed

2 files changed

+1
-33
lines changed

astro/tests/bare-pages.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ test.describe('Bare Pages', () => {
103103
const response = await page.goto('/bare/fr/events/');
104104
expect(response?.status()).toBe(200);
105105

106-
await expect(page.locator('h2')).toContainText('Galaxy France Events');
106+
await expect(page.getByRole('heading', { name: 'Galaxy France Events' })).toBeVisible();
107107

108108
// Table should be present (may have upcoming and/or recent sections)
109109
const table = page.locator('table.events-table').first();
Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +0,0 @@
1-
<!--
2-
3-
<div class="alert" style="background: #fc954e;">
4-
5-
#### **Cluster Maintenance April 8 and 9**
6-
7-
Starting from April 8th 2024, maintenance work will take place at our compute cluster, however our headnode servers are not affected. This means:
8-
<li> Our website will be reachable </li>
9-
<li> You can start jobs and workflows </li>
10-
<li> Jobs can remain in 'grey' state for several days </li>
11-
<li> You can not upload files </li>
12-
<li> Interactive tools will be aborted and you can not start new ones </li>
13-
The maintenance should be completed by April 10th and we will resume to normal operation then. Due to backlog in the job queue, job execution can take notably longer, please refrain from inquiries.
14-
</div>
15-
16-
<div class="alert" style="background: #68d4ff;">
17-
18-
#### **Global Climate Strike on September 15th 2023**
19-
20-
The Freiburg Galaxy team will be striking on 15.09.2023. The job queue will be paused for a few hours on Friday. This means that you will still be able to visit our website, but new jobs will not start. Running jobs will remain unaffected. For more information, please see our [blog post](https://galaxyproject.org/news/2023-09-11-climate-strike/).
21-
22-
</div>
23-
24-
<div class="alert" style="background: #00d084;">
25-
26-
#### **Act, don't criminalize!**
27-
28-
Today, 21st of April 2023, a statement in support of peaceful, but resolved protest against insufficient climate politics got released and has been signed by more than 1000 scientists from German-speaking countries in Europe. Read [why members of the Freiburg, Germany branch of Galaxy Europe endorse this initiative](https://galaxyproject.org/news/2023-04-21-act-dont-criminalize/).
29-
30-
</div>
31-
32-
-->

0 commit comments

Comments
 (0)