@@ -119,6 +119,7 @@ describe('BaseClient', () => {
119119 const options = getDefaultTestClientOptions ( { } ) ;
120120 const client = new TestClient ( options ) ;
121121 const scope = new Scope ( ) ;
122+ // eslint-disable-next-line deprecation/deprecation
122123 const hub = new Hub ( client , scope ) ;
123124
124125 scope . addBreadcrumb ( { message : 'hello' } , 100 ) ;
@@ -134,6 +135,7 @@ describe('BaseClient', () => {
134135 const options = getDefaultTestClientOptions ( { } ) ;
135136 const client = new TestClient ( options ) ;
136137 const scope = new Scope ( ) ;
138+ // eslint-disable-next-line deprecation/deprecation
137139 const hub = new Hub ( client , scope ) ;
138140
139141 scope . addBreadcrumb ( { message : 'hello' } , 100 ) ;
@@ -149,6 +151,7 @@ describe('BaseClient', () => {
149151 const options = getDefaultTestClientOptions ( { maxBreadcrumbs : 1 } ) ;
150152 const client = new TestClient ( options ) ;
151153 const scope = new Scope ( ) ;
154+ // eslint-disable-next-line deprecation/deprecation
152155 const hub = new Hub ( client , scope ) ;
153156
154157 scope . addBreadcrumb ( { message : 'hello' } , 100 ) ;
@@ -165,6 +168,7 @@ describe('BaseClient', () => {
165168 const options = getDefaultTestClientOptions ( { } ) ;
166169 const client = new TestClient ( options ) ;
167170 const scope = new Scope ( ) ;
171+ // eslint-disable-next-line deprecation/deprecation
168172 const hub = new Hub ( client , scope ) ;
169173
170174 scope . addBreadcrumb ( { message : 'hello' } ) ;
@@ -181,6 +185,7 @@ describe('BaseClient', () => {
181185 const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
182186 const client = new TestClient ( options ) ;
183187 const scope = new Scope ( ) ;
188+ // eslint-disable-next-line deprecation/deprecation
184189 const hub = new Hub ( client , scope ) ;
185190
186191 // eslint-disable-next-line deprecation/deprecation
@@ -196,6 +201,7 @@ describe('BaseClient', () => {
196201 const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
197202 const client = new TestClient ( options ) ;
198203 const scope = new Scope ( ) ;
204+ // eslint-disable-next-line deprecation/deprecation
199205 const hub = new Hub ( client , scope ) ;
200206
201207 // eslint-disable-next-line deprecation/deprecation
@@ -211,6 +217,7 @@ describe('BaseClient', () => {
211217 const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
212218 const client = new TestClient ( options ) ;
213219 const scope = new Scope ( ) ;
220+ // eslint-disable-next-line deprecation/deprecation
214221 const hub = new Hub ( client , scope ) ;
215222
216223 // eslint-disable-next-line deprecation/deprecation
@@ -226,6 +233,7 @@ describe('BaseClient', () => {
226233 const options = getDefaultTestClientOptions ( { beforeBreadcrumb } ) ;
227234 const client = new TestClient ( options ) ;
228235 const scope = new Scope ( ) ;
236+ // eslint-disable-next-line deprecation/deprecation
229237 const hub = new Hub ( client , scope ) ;
230238
231239 // eslint-disable-next-line deprecation/deprecation
@@ -620,6 +628,7 @@ describe('BaseClient', () => {
620628 const options = getDefaultTestClientOptions ( { dsn : PUBLIC_DSN , maxBreadcrumbs : 1 } ) ;
621629 const client = new TestClient ( options ) ;
622630 const scope = new Scope ( ) ;
631+ // eslint-disable-next-line deprecation/deprecation
623632 const hub = new Hub ( client , scope ) ;
624633 // eslint-disable-next-line deprecation/deprecation
625634 hub . addBreadcrumb ( { message : '1' } ) ;
0 commit comments