Skip to content

Commit

Permalink
Generate simple enum (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
osipov-mit authored Jul 19, 2022
1 parent 4a80d90 commit ef52312
Show file tree
Hide file tree
Showing 8 changed files with 345 additions and 59 deletions.
11 changes: 11 additions & 0 deletions api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.23.6

_07/19/2022_

https://github.com/gear-tech/gear-js/pull/845

### Changes

- Adjust simple enum generation

---
## 0.23.5

_07/18/2022_
Expand Down
22 changes: 0 additions & 22 deletions api/jest.config.js

This file was deleted.

14 changes: 14 additions & 0 deletions api/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import type { Config } from '@jest/types';

const config: Config.InitialOptions = {
clearMocks: true,
coverageProvider: 'v8',
testEnvironment: 'node',
transformIgnorePatterns: ['node_modules/(?!@polkadot)/'],
verbose: true,
testSequencer: './test/testSequencer.js',
preset: 'ts-jest/presets/js-with-babel',
testTimeout: 15000,
};

export default config;
Loading

0 comments on commit ef52312

Please sign in to comment.