File tree 3 files changed +0
-10
lines changed
3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,3 @@ if ( process.env.TEST_MODE === undefined && ! global.IS_DEV ) {
47
47
}
48
48
} ;
49
49
}
50
-
51
- global . CRASH_REPORTER = {
52
- productName : "Before Dawn" ,
53
- companyName : "Before Dawn" ,
54
- submitURL : "http://beforedawn.muffinlabs.com:1127/post" ,
55
- uploadToServer : true
56
- } ;
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
const electron = require ( "electron" ) ;
18
- const { crashReporter} = require ( "electron" ) ;
19
18
const log = require ( "electron-log" ) ;
20
19
21
20
const app = electron . app ; // Module to control application life.
@@ -1027,7 +1026,6 @@ if ( typeof(global.RAVEN_PRIVATE_URL) !== "undefined" ) {
1027
1026
Raven . config ( global . RAVEN_PRIVATE_URL , global . RAVEN_OPTIONS ) . install ( ) ;
1028
1027
}
1029
1028
1030
- crashReporter . start ( global . CRASH_REPORTER ) ;
1031
1029
1032
1030
if ( global . IS_DEV ) {
1033
1031
log . info ( "Running in development" ) ;
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ describe('Prefs', function() {
107
107
108
108
it ( 'allows setting path via dialog' , function ( done ) {
109
109
app . fakeDialog . mock ( [ { method : 'showOpenDialog' , value : [ '/not/a/real/path' ] } ] ) ;
110
-
111
110
app . client . waitUntilWindowLoaded ( ) . click ( "=Preferences" ) .
112
111
then ( ( ) => app . client . click ( "button.pick" ) ) .
113
112
then ( ( ) => app . client . click ( "button.save" ) ) .
You can’t perform that action at this time.
0 commit comments