Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSvietlova committed Jan 13, 2025
1 parent fe11c65 commit 3ff385e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ describe('RouteChangePlugin', () => {
const DefaultRoutingProvider = createDefaultRoutingProvider(mockOnSettle, window.location)
const clock = new IncrementingClock('1970-01-01T00:00:00Z')
const delivery = new InMemoryDelivery()
let appState: AppState
let appState: AppState = 'starting'

Check failure on line 166 in packages/platforms/browser/tests/auto-instrumentation/route-change-plugin.test.ts

View workflow job for this annotation

GitHub Actions / linting

'appState' is assigned a value but never used
const setAppState = jest.fn((state: AppState) => {
appState = state
})
Expand All @@ -190,7 +190,7 @@ describe('RouteChangePlugin', () => {
const DefaultRoutingProvider = createDefaultRoutingProvider(mockOnSettle, window.location)
const clock = new IncrementingClock()
const delivery = new InMemoryDelivery()
let appState: AppState
let appState: AppState = 'starting'

Check failure on line 193 in packages/platforms/browser/tests/auto-instrumentation/route-change-plugin.test.ts

View workflow job for this annotation

GitHub Actions / linting

'appState' is assigned a value but never used
const setAppState = jest.fn((state: AppState) => {
appState = state
})
Expand Down Expand Up @@ -235,7 +235,7 @@ describe('RouteChangePlugin', () => {
routeChangeCallback = startRouteChangeSpan
}

let appState: AppState
let appState: AppState = 'starting'

Check failure on line 238 in packages/platforms/browser/tests/auto-instrumentation/route-change-plugin.test.ts

View workflow job for this annotation

GitHub Actions / linting

'appState' is assigned a value but never used
const setAppState = jest.fn((state: AppState) => {
appState = state
})
Expand Down

0 comments on commit 3ff385e

Please sign in to comment.