Skip to content

Commit bc849c7

Browse files
committed
Remove unncessary tests -- screenshots covers it already
1 parent c6bb61c commit bc849c7

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

special-pages/pages/history/integration-tests/history.spec.js

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -263,20 +263,4 @@ test.describe('history', () => {
263263
await hp.hasBackgroundColor({ hex: '#27282A' });
264264
});
265265
});
266-
267-
test.describe('last item divider default colors', () => {
268-
test('divider color - light', async ({ page }, workerInfo) => {
269-
const hp = HistoryTestPage.create(page, workerInfo).withEntries(5);
270-
await hp.openPage({});
271-
// rgba(0, 0, 0, 0.06) is --color-black-at-6 var value
272-
await hp.lastItemDividerHasColor({ rgb: 'rgba(0, 0, 0, 0.06)' });
273-
});
274-
test('divider color - dark', async ({ page }, workerInfo) => {
275-
const hp = HistoryTestPage.create(page, workerInfo).withEntries(5);
276-
await hp.openPage({});
277-
await hp.darkMode();
278-
// rgba(255, 255, 255, 0.06) is --color-white-at-6 var value
279-
await hp.lastItemDividerHasColor({ rgb: 'rgba(255, 255, 255, 0.06)' });
280-
});
281-
});
282266
});

0 commit comments

Comments
 (0)