Feature/3 pilots page and drawer (#17)

* adding pilots page and drawer component

* adding pilot page and pilot drawer
This commit was merged in pull request #17.
This commit is contained in:
2024-05-30 22:15:43 -05:00
committed by GitHub
parent 6782c1906d
commit dd73d48ffd
21 changed files with 878 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
import dotenv from 'dotenv';
dotenv.config({ path: '.env' });
const config = {
requireModule: ['ts-node/register'],
require: ['e2e/support/hooks.ts', 'e2e/steps/*.steps.ts'],
format: [
'progress-bar',
'json:e2e/results/report/report.json',
'rerun:e2e/results/@rerun.txt'
],
formatOptions: { snippetInterface: 'async-await' },
parallel: Number(process.env.PARALLEL) ? Number(process.env.PARALLEL) : 1
};
export default config;