@@ -14,7 +14,7 @@ describe('EventPluginManager', () => {
14
14
it ( 'should add items to the event.' , ( done ) => {
15
15
const client = new ExceptionlessClient ( {
16
16
apiKey : 'LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw' ,
17
- serverUrl : 'http://localhost:50000 '
17
+ serverUrl : 'http://localhost:5000 '
18
18
} ) ;
19
19
20
20
const context = new EventPluginContext ( client , { } , new ContextData ( ) ) ;
@@ -56,7 +56,7 @@ describe('EventPluginManager', () => {
56
56
it ( 'setting cancel should stop plugin execution.' , ( done ) => {
57
57
const client = new ExceptionlessClient ( {
58
58
apiKey : 'LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw' ,
59
- serverUrl : 'http://localhost:50000 '
59
+ serverUrl : 'http://localhost:5000 '
60
60
} ) ;
61
61
62
62
const context = new EventPluginContext ( client , { } , new ContextData ( ) ) ;
@@ -88,7 +88,7 @@ describe('EventPluginManager', () => {
88
88
it ( 'throwing error should stop plugin execution.' , ( done ) => {
89
89
const client = new ExceptionlessClient ( {
90
90
apiKey : 'LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw' ,
91
- serverUrl : 'http://localhost:50000 '
91
+ serverUrl : 'http://localhost:5000 '
92
92
} ) ;
93
93
const context = new EventPluginContext ( client , { } , new ContextData ( ) ) ;
94
94
@@ -115,7 +115,7 @@ describe('EventPluginManager', () => {
115
115
it ( 'throwing async error should stop plugin execution.' , ( done ) => {
116
116
const client = new ExceptionlessClient ( {
117
117
apiKey : 'LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw' ,
118
- serverUrl : 'http://localhost:50000 '
118
+ serverUrl : 'http://localhost:5000 '
119
119
} ) ;
120
120
const context = new EventPluginContext ( client , { } , new ContextData ( ) ) ;
121
121
@@ -153,7 +153,7 @@ describe('EventPluginManager', () => {
153
153
it ( 'should cancel via timeout.' , ( done ) => {
154
154
const client = new ExceptionlessClient ( {
155
155
apiKey : 'LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw' ,
156
- serverUrl : 'http://localhost:50000 '
156
+ serverUrl : 'http://localhost:5000 '
157
157
} ) ;
158
158
const context = new EventPluginContext ( client , { } , new ContextData ( ) ) ;
159
159
@@ -180,7 +180,7 @@ describe('EventPluginManager', () => {
180
180
it ( 'should ensure config plugins are not wrapped.' , ( ) => {
181
181
const client = new ExceptionlessClient ( {
182
182
apiKey : 'LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw' ,
183
- serverUrl : 'http://localhost:50000 '
183
+ serverUrl : 'http://localhost:5000 '
184
184
} ) ;
185
185
const context = new EventPluginContext ( client , { } , new ContextData ( ) ) ;
186
186
0 commit comments