We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af632b commit fe305bfCopy full SHA for fe305bf
__tests__/integration/api.test.ts
@@ -1,4 +1,4 @@
1
-import featureApi, {getBlockFeaturesSchema, getFeaturesSchema} from '../../src/api/featuresApi';
+import featureApi, { getBlockFeaturesSchema, getFeaturesSchema } from '../../src/api/featuresApi';
2
3
describe('Feature api', () => {
4
it('should be able to call the features api', async () => {
@@ -9,9 +9,11 @@ describe('Feature api', () => {
9
expect(() => getFeaturesSchema.parse(response)).not.toThrow();
10
11
expect(response.features).toEqual(
12
- expect.arrayContaining([expect.objectContaining({
13
- name: 'INCREASE_MAX_MERKLE_PATH_LENGTH',
14
- })])
+ expect.arrayContaining([
+ expect.objectContaining({
+ name: 'INCREASE_MAX_MERKLE_PATH_LENGTH',
15
+ }),
16
+ ])
17
);
18
});
19
0 commit comments