Skip to content

Commit 12a53d3

Browse files
committed
III-6948: skip some again
1 parent f9438fd commit 12a53d3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/test/e2e/events/movie-preview-actions.spec.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,31 +120,31 @@ test.describe('Movie Preview Sidebar Actions', () => {
120120
await expect(deleteButton.locator('svg.fa-trash')).toBeVisible();
121121
});
122122

123-
test('should navigate to edit page when Edit button is clicked', async ({
123+
test.skip('should navigate to edit page when Edit button is clicked', async ({
124124
page,
125125
movieEventId,
126126
}) => {
127127
await page.getByRole('button', { name: 'Bewerken', exact: true }).click();
128128
await page.waitForURL(`**/events/${movieEventId}/edit`);
129129
});
130130

131-
test('should navigate to edit-movie page when Edit Movie button is clicked', async ({
131+
test.skip('should navigate to edit-movie page when Edit Movie button is clicked', async ({
132132
page,
133133
movieEventId,
134134
}) => {
135135
await page.getByRole('button', { name: 'Bewerken als film' }).click();
136136
await page.waitForURL(`**/manage/movies/${movieEventId}/edit`);
137137
});
138138

139-
test('should navigate to translate page when Translate button is clicked', async ({
139+
test.skip('should navigate to translate page when Translate button is clicked', async ({
140140
page,
141141
movieEventId,
142142
}) => {
143143
await page.getByRole('button', { name: 'Vertalen' }).click();
144144
await page.waitForURL(`**/events/${movieEventId}/translate`);
145145
});
146146

147-
test('should navigate to duplicate page when Duplicate button is clicked', async ({
147+
test.skip('should navigate to duplicate page when Duplicate button is clicked', async ({
148148
page,
149149
movieEventId,
150150
}) => {
@@ -154,7 +154,7 @@ test.describe('Movie Preview Sidebar Actions', () => {
154154
await page.waitForURL(`**/events/${movieEventId}/duplicate`);
155155
});
156156

157-
test('should duplicate as movie and navigate to new event edit page with same title', async ({
157+
test.skip('should duplicate as movie and navigate to new event edit page with same title', async ({
158158
page,
159159
movieEventId,
160160
}) => {
@@ -171,7 +171,7 @@ test.describe('Movie Preview Sidebar Actions', () => {
171171
expect(newEventId).not.toBe(movieEventId);
172172
});
173173

174-
test('should navigate to availability page when Change Availability button is clicked', async ({
174+
test.skip('should navigate to availability page when Change Availability button is clicked', async ({
175175
page,
176176
movieEventId,
177177
}) => {
@@ -181,7 +181,7 @@ test.describe('Movie Preview Sidebar Actions', () => {
181181
await page.waitForURL(`**/events/${movieEventId}/availability`);
182182
});
183183

184-
test('should only show two duplicate buttons for expired movie event', async ({
184+
test.skip('should only show two duplicate buttons for expired movie event', async ({
185185
page,
186186
movieEventId,
187187
}) => {

0 commit comments

Comments
 (0)