forked from backstage/backstage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
104 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'e2e-test': minor | ||
--- | ||
|
||
Converted into a CLI, use `yarn e2e-test run` to run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright 2020 Spotify AB | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import { CommanderStatic } from 'commander'; | ||
import { run } from './run'; | ||
|
||
export function registerCommands(program: CommanderStatic) { | ||
program.command('run').description('Run e2e tests').action(run); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Copyright 2020 Spotify AB | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import program from 'commander'; | ||
import chalk from 'chalk'; | ||
import { registerCommands } from './commands'; | ||
import { version } from '../package.json'; | ||
import { exitWithError } from './lib/helpers'; | ||
|
||
async function main(argv: string[]) { | ||
program.name('e2e-test').version(version); | ||
|
||
registerCommands(program); | ||
|
||
program.on('command:*', () => { | ||
console.log(); | ||
console.log(chalk.red(`Invalid command: ${program.args.join(' ')}`)); | ||
console.log(); | ||
program.outputHelp(); | ||
process.exit(1); | ||
}); | ||
|
||
program.parse(argv); | ||
} | ||
|
||
process.on('unhandledRejection', (rejection: unknown) => { | ||
// Try to avoid exiting if the unhandled error is coming from jsdom, i.e. zombie. | ||
// Those are typically errors on the page that should be benign, at least in the | ||
// context of this test. We have other ways of asserting that the page is being | ||
// rendered correctly. | ||
if ( | ||
rejection instanceof Error && | ||
rejection?.stack?.includes('node_modules/jsdom/lib') | ||
) { | ||
console.log(`Ignored error inside jsdom, ${rejection?.stack ?? rejection}`); | ||
} else { | ||
if (rejection instanceof Error) { | ||
exitWithError(rejection); | ||
} else { | ||
exitWithError(new Error(`Unknown rejection: '${rejection}'`)); | ||
} | ||
} | ||
}); | ||
|
||
main(process.argv).catch(exitWithError); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters