Skip to content

Commit

Permalink
workflow tidy structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Alexander committed Nov 20, 2023
1 parent 9a20d46 commit 9f10b5b
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import authPayload from '../../fixtures/requests/auth/GET_TokenRequest_GP_ADMIN.json';
import authPayload from '../../../fixtures/requests/auth/GET_TokenRequest_GP_ADMIN.json';

describe('authentication & authorisation', () => {
const baseUrl = 'http://localhost:3000';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const patient = {
const smokeTest = Cypress.env('CYPRESS_RUN_AS_SMOKETEST') ?? false;
const baseUrl = Cypress.env('CYPRESS_BASE_URL') ?? 'http://localhost:3000/';

describe('assert GP_ADMIM workflow path', () => {
describe('assert GP_ADMIN user has access to the GP_ADMIM workflow path', () => {
const baseUrl = 'http://localhost:3000';

context('session management', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const patient = {
const smokeTest = Cypress.env('CYPRESS_RUN_AS_SMOKETEST') ?? false;
const baseUrl = Cypress.env('CYPRESS_BASE_URL') ?? 'http://localhost:3000/';

describe('assert GP_CLINICAL workflow path', () => {
describe('assert GP_CLINICAL user has access to the GP_CLINICAL workflow path', () => {
const baseUrl = 'http://localhost:3000';

context('session management', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import searchPatientPayload from '../../fixtures/requests/GET_SearchPatient.json';
import searchPatientPayload from '../../../fixtures/requests/GET_SearchPatient.json';

describe('PCSE Download Workflow: Access and download found files', () => {
// env vars
Expand Down

0 comments on commit 9f10b5b

Please sign in to comment.