Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
theref committed Jul 31, 2024
1 parent bd57d9f commit 30ab3c3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/taco/test/conditions/base/json.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import { describe, expect, it } from 'vitest';

import {
Expand Down Expand Up @@ -37,7 +38,7 @@ describe('JsonApiCondition', () => {

describe('parameters', () => {
it('accepts conditions without query path', () => {
const {query, ...noQueryObj} = testJsonApiConditionObj;
const { query, ...noQueryObj} = testJsonApiConditionObj;
const result = JsonApiCondition.validate(
JsonApiConditionSchema,
noQueryObj
Expand All @@ -48,7 +49,7 @@ describe('JsonApiCondition', () => {
});

it('accepts conditions without parameters', () => {
const {parameters, ...noParamsObj} = testJsonApiConditionObj;
const { query, ...noParamsObj} = testJsonApiConditionObj;
const result = JsonApiCondition.validate(
JsonApiConditionSchema,
noParamsObj
Expand Down

0 comments on commit 30ab3c3

Please sign in to comment.