Skip to content

Commit cbd4747

Browse files
rbro112priscilawebdev
authored andcommitted
ref(eslint): Fix failing eslints (#97951)
Eslint is failing on master currently, this runs `pnpm run lint:js --fix` and checks in the fixes.
1 parent be3dacf commit cbd4747

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

static/app/views/explore/logs/logsToolbar.spec.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ describe('LogsToolbar', () => {
137137
);
138138
});
139139

140-
it('can add/delete visualizes', async function () {
140+
it('can add/delete visualizes', async () => {
141141
const {router} = render(
142142
<Wrapper>
143143
<LogsToolbar
@@ -200,7 +200,7 @@ describe('LogsToolbar', () => {
200200
);
201201
});
202202

203-
it('can add/delete group bys', async function () {
203+
it('can add/delete group bys', async () => {
204204
const {router} = render(
205205
<Wrapper>
206206
<LogsToolbar

static/app/views/insights/common/utils/useCompactSelectOptionsCache.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('useCompactSelectOptionsCache', () => {
9595
expect(result.current.options).toEqual([]);
9696
});
9797

98-
it('uses the cache key', function () {
98+
it('uses the cache key', () => {
9999
const {result, rerender} = renderHook(
100100
(args: Parameters<typeof useCompactSelectOptionsCache>) => {
101101
return useCompactSelectOptionsCache(...args);

static/gsApp/components/features/planFeature.spec.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ describe('PlanFeature', () => {
211211
});
212212
});
213213

214-
it('returns dashboards-basic in team plan even if response does not include it', async function () {
214+
it('returns dashboards-basic in team plan even if response does not include it', async () => {
215215
const mockFn = jest.fn(() => null);
216216

217217
const sub = SubscriptionFixture({
@@ -235,7 +235,7 @@ describe('PlanFeature', () => {
235235
});
236236
});
237237

238-
it('returns dashboards-edit in business plan even if response does not include it', async function () {
238+
it('returns dashboards-edit in business plan even if response does not include it', async () => {
239239
const mockFn = jest.fn(() => null);
240240

241241
const sub = SubscriptionFixture({

0 commit comments

Comments
 (0)