File tree 7 files changed +21
-10
lines changed
7 files changed +21
-10
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ before_install:
12
12
# get an up to date version
13
13
- npm install -g yarn
14
14
before_script :
15
- - npm run test:setup -- --token $FIREBASE_TOKEN --projectId $FIREBASE_PROJECT
15
+ - cp config/ci.config.json config/project.json
16
16
script :
17
17
- xvfb-run npm test
18
18
Original file line number Diff line number Diff line change
1
+ {
2
+ "apiKey" : " AIzaSyBNHCyZ-bpv-WA-HpXTmigJm2aq3z1kaH8" ,
3
+ "authDomain" : " jscore-sandbox-141b5.firebaseapp.com" ,
4
+ "databaseURL" : " https://jscore-sandbox-141b5.firebaseio.com" ,
5
+ "projectId" : " jscore-sandbox-141b5" ,
6
+ "storageBucket" : " jscore-sandbox-141b5.appspot.com" ,
7
+ "messagingSenderId" : " 280127633210"
8
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @firebase/auth" ,
3
- "version" : " 0.2.1 " ,
3
+ "version" : " 0.2.2 " ,
4
4
"main" : " dist/auth.js" ,
5
5
"description" : " Javascript library for Firebase Auth SDK" ,
6
6
"files" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " firebase" ,
3
- "version" : " 4.6.1 " ,
3
+ "version" : " 4.6.2 " ,
4
4
"description" : " Firebase JavaScript library for web and Node.js" ,
5
5
"author" :
" Firebase <[email protected] > (https://firebase.google.com/)" ,
6
6
"license" : " Apache-2.0" ,
28
28
"react-native" : " index.react-native.js" ,
29
29
"dependencies" : {
30
30
"@firebase/app" : " ^0.1.2" ,
31
- "@firebase/auth" : " ^0.2.1 " ,
31
+ "@firebase/auth" : " ^0.2.2 " ,
32
32
"@firebase/database" : " ^0.1.3" ,
33
- "@firebase/firestore" : " ^0.1.3 " ,
33
+ "@firebase/firestore" : " ^0.1.4 " ,
34
34
"@firebase/messaging" : " ^0.1.3" ,
35
35
"@firebase/polyfill" : " ^0.1.2" ,
36
36
"@firebase/storage" : " ^0.1.2" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @firebase/firestore" ,
3
- "version" : " 0.1.3 " ,
3
+ "version" : " 0.1.4 " ,
4
4
"description" : " " ,
5
5
"scripts" : {
6
6
"dev" : " gulp dev" ,
18
18
"module" : " dist/esm/index.js" ,
19
19
"license" : " Apache-2.0" ,
20
20
"dependencies" : {
21
- "@firebase/webchannel-wrapper" : " ^0.2.3 "
21
+ "@firebase/webchannel-wrapper" : " ^0.2.4 "
22
22
},
23
23
"peerDependencies" : {
24
24
"@firebase/app" : " ^0.1.0"
Original file line number Diff line number Diff line change @@ -1039,8 +1039,11 @@ export async function runSpec(
1039
1039
runner = new MemoryTestRunner ( name , config ) ;
1040
1040
}
1041
1041
await runner . start ( ) ;
1042
- await runner . run ( steps ) ;
1043
- await runner . shutdown ( ) ;
1042
+ try {
1043
+ await runner . run ( steps ) ;
1044
+ } finally {
1045
+ await runner . shutdown ( ) ;
1046
+ }
1044
1047
}
1045
1048
1046
1049
/** Specifies initial configuration information for the test. */
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @firebase/webchannel-wrapper" ,
3
- "version" : " 0.2.3 " ,
3
+ "version" : " 0.2.4 " ,
4
4
"description" : " A wrapper of the webchannel packages from closure-library for use outside of a closure compiled application" ,
5
5
"main" : " dist/index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments