remove deploy test, simulate broken test

This commit is contained in:
Denys Vuika
2018-09-20 12:06:49 +01:00
parent ef47e57282
commit 1d05b710d8
2 changed files with 2 additions and 11 deletions

View File

@@ -31,14 +31,3 @@ jobs:
- bash <(curl -s https://codecov.io/bash) -X gcov - bash <(curl -s https://codecov.io/bash) -X gcov
- stage: e2e - stage: e2e
script: npm run build && npm run e2e:docker script: npm run build && npm run e2e:docker
deploy:
skip_cleanup: true
provider: s3
access_key_id: $ARTIFACTS_KEY
secret_access_key: $ARTIFACTS_SECRET
bucket: $ARTIFACTS_BUCKET
local-dir: e2e-output
region: $ARTIFACTS_REGION
on:
repo: Alfresco/alfresco-content-app
branch: development

View File

@@ -42,11 +42,13 @@ fdescribe('Page titles', () => {
xit(''); xit('');
describe('on Login / Logout pages', () => { describe('on Login / Logout pages', () => {
it('on Login page - [C217155]', () => { it('on Login page - [C217155]', () => {
loginPage.load() loginPage.load()
.then(() => { .then(() => {
expect(browser.getTitle()).toContain('Sign in'); expect(browser.getTitle()).toContain('Sign in');
expect(true).toBe(false);
}); });
}); });