Check @jest-reporters/testrail plugin. It is a TestRail module for Jest. Helps to create test runs on TestRail for multiple suites and send results.
First, install the plugin
npm i @jest-reporters/testrail
Second, update jest.config.js
module.exports = {
...
reporters: [
["testrail", {
project_id: "1"
}]
]
};
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…