this is just for the repo, and not the workspace Co-authored-by: Rares Matei <matei.rar@gmail.com>
11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
export const enum UnitTestRunner {
|
|
Karma = 'karma',
|
|
Jest = 'jest',
|
|
None = 'none',
|
|
}
|
|
export const enum E2eTestRunner {
|
|
Protractor = 'protractor',
|
|
Cypress = 'cypress',
|
|
None = 'none',
|
|
}
|