Skip to content

Commit

Permalink
ci(script): fix connect test generator
Browse files Browse the repository at this point in the history
  • Loading branch information
karliatto committed Feb 3, 2025
1 parent dbb7cf9 commit f6fe0b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ci/connect-test-matrix-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const inputs = [
value: ['node', 'web'],
},
{
key: 'cache_tx',
key: 'disable_cache_tx',
value: ['true', 'false'],
},
{
Expand Down Expand Up @@ -147,7 +147,7 @@ args.forEach(arg => {
log('parsedArgs', parsedArgs);

const validateArgs = () => {
const requiredArgs = ['model', 'firmware', 'env', 'groups', 'cache_tx', 'transport'];
const requiredArgs = ['model', 'firmware', 'env', 'groups', 'disable_cache_tx', 'transport'];

requiredArgs.forEach(arg => {
if (!parsedArgs[arg]) {
Expand Down

0 comments on commit f6fe0b4

Please sign in to comment.