Remove postgres question from e2e tests

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-04-22 15:56:31 +02:00
parent 00fa0dada0
commit 578148ba0e
2 changed files with 4 additions and 13 deletions
@@ -41,12 +41,12 @@
"winston": "^3.2.1"
},
"devDependencies": {
"better-sqlite3": "^7.5.0",
"@backstage/cli": "^{{version '@backstage/cli'}}",
"@types/dockerode": "^3.3.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5",
"@types/luxon": "^2.0.4"
"@types/express": "^4.17.6",
"@types/luxon": "^2.0.4",
"better-sqlite3": "^7.5.0"
},
"files": [
"dist"
+1 -10
View File
@@ -51,7 +51,7 @@ export async function run() {
const isPostgres = Boolean(process.env.POSTGRES_USER);
print('Creating a Backstage App');
const appDir = await createApp('test-app', isPostgres, workspaceDir, rootDir);
const appDir = await createApp('test-app', workspaceDir, rootDir);
print('Creating a Backstage Plugin');
const pluginName = await createPlugin('test-plugin', appDir);
@@ -191,7 +191,6 @@ async function pinYarnVersion(dir: string) {
*/
async function createApp(
appName: string,
isPostgres: boolean,
workspaceDir: string,
rootDir: string,
) {
@@ -215,14 +214,6 @@ async function createApp(
await waitFor(() => stdout.includes('Enter a name for the app'));
child.stdin?.write(`${appName}\n`);
await waitFor(() => stdout.includes('Select database for the backend'));
if (isPostgres) {
// Simulate down arrow press
child.stdin?.write(`\u001B\u005B\u0042`);
}
child.stdin?.write(`\n`);
print('Waiting for app create script to be done');
await waitForExit(child);