Update HT-CLI and Node-SDK
The following is the command to update HT-CLI and Node-SDK.
htcli update-ht-packages --package-manager <package manager name> --config-file-path <path-to-your-cli-config>
This command can be added as a script in your package.json and run it before every test run on CI or local to update the hypertest packages to the latest deployed version, in sync with the hypertest backed.
// App's package.json
{
"scripts" : {
"update-ht-packages" : "htcli update-ht-packages --package-manager <package manager name> --config-file-path <path-to-your-cli-config>"
},
}
Last updated