Skip to content

Commit

Permalink
TASK: Use admin admin as login
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Sep 25, 2023
1 parent f7f8c13 commit aba5543
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
./flow flow:cache:flush
./flow flow:cache:warmup
./flow doctrine:migrate
./flow user:create --username=admin --password=password --first-name=John --last-name=Doe --roles=Administrator
./flow user:create --username=admin --password=admin --first-name=John --last-name=Doe --roles=Administrator
- run:
name: Start flow server
command: /home/circleci/app/flow server:run --port 8081
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test('Switching from Neos.Test.OneDimension to Neos.Test.TwoDimensions and back'
await t.navigateTo('http://onedimension.localhost:8081/neos');
await t
.typeText('#username', 'admin')
.typeText('#password', 'password')
.typeText('#password', 'admin')
.click('button.neos-login-btn');
await waitForReact(30000);
await Page.goToPage('Home');
Expand All @@ -38,7 +38,7 @@ test('Switching from Neos.Test.TwoDimensions to Neos.Test.OneDimension and back'
await t.navigateTo('http://twodimensions.localhost:8081/neos');
await t
.typeText('#username', 'admin')
.typeText('#password', 'password')
.typeText('#password', 'admin')
.click('button.neos-login-btn');
await waitForReact(30000);
await Page.goToPage('Home');
Expand Down
2 changes: 1 addition & 1 deletion Tests/IntegrationTests/e2e-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dc exec -T php bash <<-'BASH'
./flow flow:cache:flush
./flow flow:cache:warmup
./flow doctrine:migrate
./flow user:create --username=admin --password=password --first-name=John --last-name=Doe --roles=Administrator || true
./flow user:create --username=admin --password=admin --first-name=John --last-name=Doe --roles=Administrator || true
./flow cr:setup --content-repository onedimension
./flow site:create neos-test-onedimension Neos.Test.OneDimension Neos.TestNodeTypes:Document.Page
Expand Down
2 changes: 1 addition & 1 deletion Tests/IntegrationTests/start-neos-dev-instance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dc exec -T php bash <<-'BASH'
./flow flow:cache:flush
./flow flow:cache:warmup
./flow doctrine:migrate
./flow user:create --username=admin --password=password --first-name=John --last-name=Doe --roles=Administrator || true
./flow user:create --username=admin --password=admin --first-name=John --last-name=Doe --roles=Administrator || true
BASH

echo ""
Expand Down
2 changes: 1 addition & 1 deletion Tests/IntegrationTests/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {PublishDropDown, Page} from './pageModel';
export const subSection = name => console.log('\x1b[33m%s\x1b[0m', ' - ' + name);

const adminUserName = 'admin';
const adminPassword = 'password';
const adminPassword = 'admin';

export const getUrl = ClientFunction(() => window.location.href);

Expand Down

0 comments on commit aba5543

Please sign in to comment.