Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix linter errors
  • Loading branch information
Lms24 committed Sep 2, 2022
commit 8e61acfd28a212dc9193ebc7ed6d0d0c5348ceb1
6 changes: 3 additions & 3 deletions packages/svelte/test/performance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import DummyComponent from './components/Dummy.svelte';

let returnUndefinedTransaction = false;

let testTransaction: { spans: any[]; startChild: jest.Mock; finish: jest.Mock } = {
const testTransaction: { spans: any[]; startChild: jest.Mock; finish: jest.Mock } = {
spans: [],
startChild: jest.fn(),
finish: jest.fn(),
};
let testUpdateSpan = { finish: jest.fn() };
let testInitSpan: any = {
const testUpdateSpan = { finish: jest.fn() };
const testInitSpan: any = {
transaction: testTransaction,
finish: jest.fn(),
startChild: jest.fn(),
Expand Down