fix(@angular/cli): removing skip e2e test

This commit is contained in:
Sumit Arora 2017-04-25 09:43:22 -04:00 committed by Hans
parent 79e29f5994
commit fb9687123c

View File

@ -1,11 +0,0 @@
import {createProject} from '../../../utils/project';
import {expectFileNotToExist} from '../../../utils/fs';
export default function() {
return Promise.resolve()
.then(() => createProject('new-project-skip-e2e', '--skip-e2e'))
.then(() => expectFileNotToExist('e2e/app.e2e-spec.ts'))
.then(() => expectFileNotToExist('e2e/app.po.ts'))
.then(() => expectFileNotToExist('protractor.conf.js'));
}