backend-manager 5.0.101 → 5.0.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "5.0.101",
3
+ "version": "5.0.102",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -103,7 +103,7 @@ class TestRunner {
103
103
  // Discover and run tests
104
104
  // BEM tests are in the top-level test/ directory of the package
105
105
  const bemTestsDir = path.resolve(__dirname, '../../test');
106
- const projectTestsDir = path.join(this.options.projectDir, 'test', 'bem');
106
+ const projectTestsDir = path.join(this.options.projectDir, 'test');
107
107
 
108
108
  // Run BEM default tests
109
109
  if (jetpack.exists(bemTestsDir)) {
@@ -358,7 +358,7 @@ class TestRunner {
358
358
  if (source === 'bem') {
359
359
  return path.relative(path.resolve(__dirname, '../../test'), testFile);
360
360
  }
361
- return path.relative(path.join(this.options.projectDir, 'test', 'bem'), testFile);
361
+ return path.relative(path.join(this.options.projectDir, 'test'), testFile);
362
362
  }
363
363
 
364
364
  /**