DEV Community

Discussion on: TestCafe: Organizing Tests with Metadata

Collapse
 
benlind profile image
Ben Lind

Great tips!

I couldn't get .meta({ foo: true }) to work with --test-meta foo=true because of the boolean. So I had to use a string, like .meta({ foo: 'yes' }) with --test-meta foo=yes.