mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
- Add test:visualRegression npm script. - Split up test:visualRegression grunt task into takeScreenshots and buildGallery subtasks. - Add intern_visual_regression.js test file. - Rename api_itern.js -> intern_api.js for consistency. - Refactor delayed exports logic for readability. - Refactor common.js page object to use ES2015 Class.
13 lines
312 B
JavaScript
13 lines
312 B
JavaScript
define({
|
|
suites: [
|
|
'test/unit/api/ingest/index',
|
|
'test/unit/api/search/index'
|
|
],
|
|
excludeInstrumentation: /(fixtures|node_modules)\//,
|
|
loaderOptions: {
|
|
paths: {
|
|
'bluebird': './node_modules/bluebird/js/browser/bluebird.js',
|
|
'moment': './node_modules/moment/moment.js'
|
|
}
|
|
}
|
|
});
|