Artiom Tretjakovas
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) ###...
### 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...
 _Originally posted by @laurislokalise in https://github.com/ArtiomTr/jest-coverage-report-action/issues/113#issuecomment-960683784_
### 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...
### 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...
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...