Skip to content

Commit fe305bf

Browse files
committed
chore: linter changes
1 parent 5af632b commit fe305bf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

__tests__/integration/api.test.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import featureApi, {getBlockFeaturesSchema, getFeaturesSchema} from '../../src/api/featuresApi';
1+
import featureApi, { getBlockFeaturesSchema, getFeaturesSchema } from '../../src/api/featuresApi';
22

33
describe('Feature api', () => {
44
it('should be able to call the features api', async () => {
@@ -9,9 +9,11 @@ describe('Feature api', () => {
99
expect(() => getFeaturesSchema.parse(response)).not.toThrow();
1010

1111
expect(response.features).toEqual(
12-
expect.arrayContaining([expect.objectContaining({
13-
name: 'INCREASE_MAX_MERKLE_PATH_LENGTH',
14-
})])
12+
expect.arrayContaining([
13+
expect.objectContaining({
14+
name: 'INCREASE_MAX_MERKLE_PATH_LENGTH',
15+
}),
16+
])
1517
);
1618
});
1719

0 commit comments

Comments
 (0)