You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the tests once without modifying the app src files, we could serve the files statically so that we wouldn't have to do ionic serve, something like this in protractor.conf.js:
On Mon, 16 Jan 2017 at 19:05, Guillaume ***@***.***> wrote:
When running the tests once without modifying the app src files, we could
serve the files statically so that we wouldn't have to do ionic serve,
something like this in protractor.conf.js:
beforeLaunch: function() {
require('ts-node').register({
project: 'e2e'
});
require('connect')().use(require('serve-static')('www')).listen(8100, function() {
console.log('Ionic App ready');
});
}
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#210>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AG5tSDUtNy8otBmUqK8mi_l9ciHilzG-ks5rSyTBgaJpZM4LkRbd>
.
When running the tests once without modifying the app src files, we could serve the files statically so that we wouldn't have to do
ionic serve
, something like this inprotractor.conf.js
:The text was updated successfully, but these errors were encountered: