@@ -119,6 +119,7 @@ describe('BaseClient', () => {
119
119
const options = getDefaultTestClientOptions ( { } ) ;
120
120
const client = new TestClient ( options ) ;
121
121
const scope = new Scope ( ) ;
122
+ // eslint-disable-next-line deprecation/deprecation
122
123
const hub = new Hub ( client , scope ) ;
123
124
124
125
scope . addBreadcrumb ( { message : 'hello' } , 100 ) ;
@@ -134,6 +135,7 @@ describe('BaseClient', () => {
134
135
const options = getDefaultTestClientOptions ( { } ) ;
135
136
const client = new TestClient ( options ) ;
136
137
const scope = new Scope ( ) ;
138
+ // eslint-disable-next-line deprecation/deprecation
137
139
const hub = new Hub ( client , scope ) ;
138
140
139
141
scope . addBreadcrumb ( { message : 'hello' } , 100 ) ;
@@ -149,6 +151,7 @@ describe('BaseClient', () => {
149
151
const options = getDefaultTestClientOptions ( { maxBreadcrumbs : 1 } ) ;
150
152
const client = new TestClient ( options ) ;
151
153
const scope = new Scope ( ) ;
154
+ // eslint-disable-next-line deprecation/deprecation
152
155
const hub = new Hub ( client , scope ) ;
153
156
154
157
scope . addBreadcrumb ( { message : 'hello' } , 100 ) ;
@@ -165,6 +168,7 @@ describe('BaseClient', () => {
165
168
const options = getDefaultTestClientOptions ( { } ) ;
166
169
const client = new TestClient ( options ) ;
167
170
const scope = new Scope ( ) ;
171
+ // eslint-disable-next-line deprecation/deprecation
168
172
const hub = new Hub ( client , scope ) ;
169
173
170
174
scope . addBreadcrumb ( { message : 'hello' } ) ;
@@ -181,6 +185,7 @@ describe('BaseClient', () => {
181
185
const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
182
186
const client = new TestClient ( options ) ;
183
187
const scope = new Scope ( ) ;
188
+ // eslint-disable-next-line deprecation/deprecation
184
189
const hub = new Hub ( client , scope ) ;
185
190
186
191
// eslint-disable-next-line deprecation/deprecation
@@ -196,6 +201,7 @@ describe('BaseClient', () => {
196
201
const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
197
202
const client = new TestClient ( options ) ;
198
203
const scope = new Scope ( ) ;
204
+ // eslint-disable-next-line deprecation/deprecation
199
205
const hub = new Hub ( client , scope ) ;
200
206
201
207
// eslint-disable-next-line deprecation/deprecation
@@ -211,6 +217,7 @@ describe('BaseClient', () => {
211
217
const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
212
218
const client = new TestClient ( options ) ;
213
219
const scope = new Scope ( ) ;
220
+ // eslint-disable-next-line deprecation/deprecation
214
221
const hub = new Hub ( client , scope ) ;
215
222
216
223
// eslint-disable-next-line deprecation/deprecation
@@ -226,6 +233,7 @@ describe('BaseClient', () => {
226
233
const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
227
234
const client = new TestClient ( options ) ;
228
235
const scope = new Scope ( ) ;
236
+ // eslint-disable-next-line deprecation/deprecation
229
237
const hub = new Hub ( client , scope ) ;
230
238
231
239
// eslint-disable-next-line deprecation/deprecation
@@ -620,6 +628,7 @@ describe('BaseClient', () => {
620
628
const options = getDefaultTestClientOptions ( { dsn : PUBLIC_DSN , maxBreadcrumbs : 1 } ) ;
621
629
const client = new TestClient ( options ) ;
622
630
const scope = new Scope ( ) ;
631
+ // eslint-disable-next-line deprecation/deprecation
623
632
const hub = new Hub ( client , scope ) ;
624
633
// eslint-disable-next-line deprecation/deprecation
625
634
hub . addBreadcrumb ( { message : '1' } ) ;
0 commit comments