You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghost/e2e/tests/admin/analytics/location.test.ts

12 lines
420 B

import {test, expect} from '../../../helpers/playwright';
import {AnalyticsLocationsPage} from '../../../helpers/pages/admin';
test.describe('Ghost Admin - Locations', () => {
test('empty sources card', async ({page}) => {
const locationsPage = new AnalyticsLocationsPage(page);
await locationsPage.goto();
await expect(locationsPage.visitorsCard).toContainText('No visitors');
});
});