mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
This is the first attempt at adding support for Angular based, mostly, on the vue changes. What works: - Added angular sample code to the `examples` folder - Rendering stories and creating stories out of existing angular components - For the time being, this only supports one-page angular components What's missing: - Addons support - Support for components that have a separate template Signed-off-by: Carlos Vega <clmvega@gmail.com>
28 lines
725 B
JavaScript
28 lines
725 B
JavaScript
/*eslint-disable*/
|
|
// Protractor configuration file, see link for more information
|
|
// https://github.com/angular/protractor/blob/master/lib/config.ts
|
|
|
|
const { SpecReporter } = require('jasmine-spec-reporter');
|
|
|
|
exports.config = {
|
|
allScriptsTimeout: 11000,
|
|
specs: ['./e2e/**/*.e2e-spec.ts'],
|
|
capabilities: {
|
|
browserName: 'chrome',
|
|
},
|
|
directConnect: true,
|
|
baseUrl: 'http://localhost:4200/',
|
|
framework: 'jasmine',
|
|
jasmineNodeOpts: {
|
|
showColors: true,
|
|
defaultTimeoutInterval: 30000,
|
|
print() {},
|
|
},
|
|
onPrepare() {
|
|
require('ts-node').register({
|
|
project: 'e2e/tsconfig.e2e.json',
|
|
});
|
|
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
|
|
},
|
|
};
|