9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
|
|
|
|
export function nxE2EStorybookPreset(filePath: string) {
|
|
return {
|
|
...nxE2EPreset(filePath),
|
|
baseUrl: 'http://localhost:4400',
|
|
};
|
|
}
|