MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / buildTestPageQueryString

Function buildTestPageQueryString

lib/commands/test.js:148–164  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

146 },
147
148 buildTestPageQueryString(options) {
149 let params = [];
150
151 if (options.module) {
152 params.push(`module=${options.module}`);
153 }
154
155 if (options.filter) {
156 params.push(`filter=${options.filter.toLowerCase()}`);
157 }
158
159 if (options.query) {
160 params.push(options.query);
161 }
162
163 return params.join('&');
164 },
165
166 async run(commandOptions) {
167 if (this.isViteProject) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…