Artiom Tretjakovas

Results 7 issues of Artiom Tretjakovas

### Idea Action should parse threshold information not only from `jest.config.*` files, but also from `package.json`. ### Description The schema of jest configuration in `package.json` file is described [here](https://jestjs.io/docs/configuration) ###...

enhancement

### Idea When `jest` exits with non-zero exit code, action always treats that as "crash". However, it is not always the case. Situations, when tests failed, or coverage threshold not...

enhancement

![DeepinScreenshot_select-area_20211104132842](https://user-images.githubusercontent.com/74536758/140306143-905f3d97-8e47-44c3-ab07-231e0a28648b.png) _Originally posted by @laurislokalise in https://github.com/ArtiomTr/jest-coverage-report-action/issues/113#issuecomment-960683784_

bug

### Discussed in https://github.com/ArtiomTr/jest-coverage-report-action/discussions/145 Originally posted by **Theartbug** September 16, 2021 This tool looks fantastic but also seems pretty linked into github. Is there any consideration for expanding its usage...

enhancement
help wanted

### Idea Show some details, instead of a simple warning. ### Description As @dagadbm mentioned in #343, in large codebases reports exceed limits, and details are hidden. It would be...

enhancement

When trying to use `tauri-specta` and returning nested result, e.g.: ```rust #[tauri::command] #[specta::specta] pub async fn get_something() -> Result { todo!() } ``` This code won't work, as `Result` doesn't...

Check for fields length in tagged enum repr is incorrect - it validates original fields length, not filtered one. Because of that, such enum causes panic: ```rust #[derive(Serialize, Type)] #[serde(tag...