• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mozilla / blurts-server / #13172

pending completion
#13172

push

circleci

web-flow
Merge pull request #2971 from mozilla/MNTOR-1356

MNTOR-1356: Add Settings E2E test

282 of 1627 branches covered (17.33%)

Branch coverage included in aggregate %.

5 of 5 new or added lines in 2 files covered. (100.0%)

959 of 4379 relevant lines covered (21.9%)

1.83 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/e2e/fixtures/basePage.js
1
/* This Source Code Form is subject to the terms of the Mozilla Public
2
 * License, v. 2.0. If a copy of the MPL was not distributed with this
3
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4

5
import { test as base, expect } from '@playwright/test'
6
import { LandingPage } from '../pages/landingPage.js'
7
import { AuthPage } from '../pages/authPage.js'
8
import { DashboardPage } from '../pages/dashBoardPage.js'
9
import { DataBreachPage } from '../pages/dataBreachPage.js'
10
import { SettingsPage } from '../pages/settingsPage.js'
11

12
const test = base.extend({
×
13
  authPage: async ({ page }, use) => {
14
    await use(new AuthPage(page))
×
15
  },
16
  landingPage: async ({ page }, use) => {
17
    await use(new LandingPage(page))
×
18
  },
19
  dashboardPage: async ({ page }, use) => {
20
    await use(new DashboardPage(page))
×
21
  },
22
  dataBreachPage: async ({ page }, use) => {
23
    await use(new DataBreachPage(page))
×
24
  },
25
  settingsPage: async ({ page }, use) => {
26
    await use(new SettingsPage(page))
×
27
  }
28
})
29

30
export { test, expect }
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc