-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpantheon.ts
39 lines (36 loc) · 2.35 KB
/
pantheon.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { getPageMetrics } from ".";
import { Webpage } from "./webpage"
const webpages: Webpage[] = [];
webpages.push(
new Webpage("Drupal Website", "https://live-wisconsin.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-kentucky.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-presenter.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-oregon.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-idahodeveloper.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-bang.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-usa.pantheonsite.io"),
new Webpage("Drupal Website", "https://live-bang.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-deutschland.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-election2020.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-indecision.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-europeanunion.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-iowa.pantheonsite.io"),
new Webpage("Drupal Website", "https://test-europeanunion.pantheonsite.io"),
new Webpage("Drupal Website", "https://test-iowa.pantheonsite.io"),
new Webpage("Drupal Website", "https://live-europeanunion.pantheonsite.io"),
new Webpage("Drupal Website", "https://live-iowa.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-official.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-portland.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-meeting.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-serious.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-nevada.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-utah.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-colorado.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-queenslibrary.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-newjersey.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-subaru.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-boise.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-visitboise.pantheonsite.io"),
new Webpage("Drupal Website", "https://dev-waitinglist.pantheonsite.io")
);
getPageMetrics(webpages);