You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`--with-scopes` and `--with-tags` make the Ruby test runner build scoped/tagged datafiles in memory (via `npx featurevisor build --json`) and evaluate matching assertions against those exact datafiles.
696
+
697
+
If an assertion references `scope` and `--with-scopes` is not provided, the runner still evaluates the assertion by merging that scope's configured context into the assertion context (without building scoped datafiles).
698
+
699
+
For compatibility, camelCase aliases are also supported: `--withScopes` and `--withTags`.
700
+
701
+
### Test against local monorepo's example-1
702
+
703
+
```bash
704
+
$ cd /absolute/path/to/featurevisor-ruby
705
+
$ bundle exec featurevisor test --projectDirectoryPath=./monorepo/examples/example-1
706
+
$ bundle exec featurevisor test --projectDirectoryPath=./monorepo/examples/example-1 --with-scopes
707
+
$ bundle exec featurevisor test --projectDirectoryPath=./monorepo/examples/example-1 --with-tags
0 commit comments