11cb0ef41Sopenharmony_ciexport function resolve(specifier, context, next) {
21cb0ef41Sopenharmony_ci  if (specifier === 'test') {
31cb0ef41Sopenharmony_ci    return {
41cb0ef41Sopenharmony_ci      url: 'file://'
51cb0ef41Sopenharmony_ci    };
61cb0ef41Sopenharmony_ci  }
71cb0ef41Sopenharmony_ci  return next(specifier);
81cb0ef41Sopenharmony_ci}
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_ciexport function getFormat(url, context, defaultGetFormat) {
111cb0ef41Sopenharmony_ci  if (url === 'file://') {
121cb0ef41Sopenharmony_ci    return {
131cb0ef41Sopenharmony_ci      format: 'dynamic'
141cb0ef41Sopenharmony_ci    }
151cb0ef41Sopenharmony_ci  }
161cb0ef41Sopenharmony_ci  return defaultGetFormat(url, context, defaultGetFormat);
171cb0ef41Sopenharmony_ci}
18