Skip to content

Commit fdc8983

Browse files
Matt GauntMinishlink
authored andcommitted
Update to new web-push-testing-service and removing unstable tests (#105)
1 parent 46c9189 commit fdc8983

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ before_install:
2020
- nvm install node
2121

2222
install:
23-
- npm install web-push-testing-service@0.3.2 -g
23+
- npm install web-push-testing-service -g
2424

2525
before_script:
2626
- composer install --prefer-source -n

tests/PushServiceTest.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,28 +68,27 @@ public function browserProvider()
6868
// Web Push
6969
array('firefox', 'stable', array()),
7070
array('firefox', 'beta', array()),
71-
array('firefox', 'unstable', array()),
71+
7272
// Web Push + GCM
7373
array('chrome', 'stable', array('GCM' => self::$gcmApiKey)),
7474
array('chrome', 'beta', array('GCM' => self::$gcmApiKey)),
75-
array('chrome', 'unstable', array('GCM' => self::$gcmApiKey)),
75+
7676
array('firefox', 'stable', array('GCM' => self::$gcmApiKey)),
7777
array('firefox', 'beta', array('GCM' => self::$gcmApiKey)),
78-
array('firefox', 'unstable', array('GCM' => self::$gcmApiKey)),
78+
7979
// Web Push + VAPID
8080
array('chrome', 'stable', array('VAPID' => self::$vapidKeys)),
8181
array('chrome', 'beta', array('VAPID' => self::$vapidKeys)),
82-
array('chrome', 'unstable', array('VAPID' => self::$vapidKeys)),
82+
8383
array('firefox', 'stable', array('VAPID' => self::$vapidKeys)),
8484
array('firefox', 'beta', array('VAPID' => self::$vapidKeys)),
85-
array('firefox', 'unstable', array('VAPID' => self::$vapidKeys)),
85+
8686
// Web Push + GCM + VAPID
8787
array('chrome', 'stable', array('GCM' => self::$gcmApiKey, 'VAPID' => self::$vapidKeys)),
8888
array('chrome', 'beta', array('GCM' => self::$gcmApiKey, 'VAPID' => self::$vapidKeys)),
89-
array('chrome', 'unstable', array('GCM' => self::$gcmApiKey, 'VAPID' => self::$vapidKeys)),
89+
9090
array('firefox', 'stable', array('GCM' => self::$gcmApiKey, 'VAPID' => self::$vapidKeys)),
9191
array('firefox', 'beta', array('GCM' => self::$gcmApiKey, 'VAPID' => self::$vapidKeys)),
92-
array('firefox', 'unstable', array('GCM' => self::$gcmApiKey, 'VAPID' => self::$vapidKeys)),
9392
);
9493
}
9594

0 commit comments

Comments
 (0)