diff --git a/common/api-review/app-exp.api.md b/common/api-review/app-exp.api.md index d8cf8ba9aac..6b21f3620ed 100644 --- a/common/api-review/app-exp.api.md +++ b/common/api-review/app-exp.api.md @@ -5,9 +5,9 @@ ```ts import { Component } from '@firebase/component'; -import { FirebaseApp } from '@firebase/app-types'; -import { FirebaseAppConfig } from '@firebase/app-types'; -import { FirebaseOptions } from '@firebase/app-types'; +import { FirebaseApp } from '@firebase/app-types-exp'; +import { FirebaseAppConfig } from '@firebase/app-types-exp'; +import { FirebaseOptions } from '@firebase/app-types-exp'; import { LogCallback } from '@firebase/logger'; import { LogLevel } from '@firebase/logger'; import { LogOptions } from '@firebase/logger'; diff --git a/scripts/run_tests_in_ci.js b/scripts/run_tests_in_ci.js deleted file mode 100644 index 8527a5e8837..00000000000 --- a/scripts/run_tests_in_ci.js +++ /dev/null @@ -1,30 +0,0 @@ -const { argv } = require('yargs'); -const path = require('path'); -const { spawn } = require('child-process-promise'); - -(async () => { - const myPath = argv._[0] || '.'; // default to the current directory - const dir = path.resolve(myPath); - const { name } = require(`${dir}/package.json`); - - let stdio; - let stderr; - try { - const testProcess = spawn('yarn', ['--cwd', dir, 'test']); - - testProcess.childProcess.stdout.on('data', data => { - stdio += data.toString(); - }); - testProcess.childProcess.stderr.on('data', data => { - stderr += data.toString(); - }); - - await testProcess; - console.log('Success: ' + name); - } catch (e) { - console.error('Failure: ' + name); - console.log(stdio); - console.error(stderr); - process.exit(1); - } -})();