ng e2e and ng test should behave equally as default (watch mode) #12932
Labels
area: @angular-devkit/build-angular
freq1: low
Only reported by a handful of users who observe it rarely
severity1: confusing
Milestone
Bug Report or Feature Request (mark with an
x
)Command (mark with an
x
)Versions
Output from:
node --version
,npm --version
andng --version
: Windows 10Repro steps
ng new project-to-reproduce
ng test
andng e2e
are as following:ng test
: Executed in watch mode. Command does not exit, has to be cancelled.ng e2e
: Executed once. Command exits after tests are finished.Desired functionality
Both commands should behave the same. This means either both should run in watch mode or both should execute once as default. Having a different behaviour on each of them is confusing.
In my opinion both should run only once and exit cleanly, as this does allow easier configuration of CI (without any changing of the config files or appending an option like
--singleRun true
) and does ensure that calling a command without any options does not get an automated script stuck.The text was updated successfully, but these errors were encountered: