fix(angular): no animate in browser nav

This commit is contained in:
Manu Mtz.-Almeida
2018-11-29 01:26:40 +01:00
committed by Manu MA
parent 194667c62a
commit 276c883493
3 changed files with 14 additions and 6 deletions

View File

@@ -32,7 +32,12 @@ describe('router-link', () => {
await testForward();
});
it('should go forward with button + navigateForward', async () => {
it('should go forward with button + navigateByUrl()', async () => {
await element(by.css('#button')).click();
await testForward();
});
it('should go forward with button + navigateForward()', async () => {
await element(by.css('#button-forward')).click();
await testForward();
});

View File

@@ -1,11 +1,12 @@
# Build core
pushd ../../..
# Build core
pushd core
npm run build
npm run link
npm link
popd
# Build angular
pushd angular
npm link @ionic/core
npm run build