Skip to content

Commit

Permalink
Merge 503b6de into d0aa0d3
Browse files Browse the repository at this point in the history
  • Loading branch information
hawx authored Apr 17, 2024
2 parents d0aa0d3 + 503b6de commit 5e25a79
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/mlpa/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func main() {
return a
},
}).
WithAttrs([]slog.Attr{slog.String("service_name", "opg-modernising-lpa")}))
WithAttrs([]slog.Attr{slog.String("service_name", "opg-modernising-lpa2")}))

if err := run(ctx, logger); err != nil {
logger.Error("run error", slog.Any("err", err.Error()))
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/attorney/language-preferences.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
describe.skip('Your preferred language', () => {
describe('Your preferred language', () => {
beforeEach(() => {
cy.visit('/fixtures/attorney?redirect=/your-preferred-language');
cy.url().should('contain', '/your-preferred-language')
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/attorney/trust-corporation.cy.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { TestMobile, TestEmail, randomShareCode } = require("../../support/e2e");

describe.skip('As a trust corporation', () => {
describe('As a trust corporation', () => {
beforeEach(() => {
const shareCode = randomShareCode()
cy.visit(`/fixtures/attorney?redirect=/attorney-start&is-trust-corporation=1&progress=signedByCertificateProvider&&withShareCode=${shareCode}&email=${TestEmail}`);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { TestEmail, randomShareCode } = require("../../support/e2e");

describe.skip('Enter reference number', () => {
describe('Enter reference number', () => {
let shareCode = ''
beforeEach(() => {
shareCode = randomShareCode()
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/donor/confirm-your-identity-and-sign.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
describe.skip('Confirm your identity and sign', () => {
describe('Confirm your identity and sign', () => {
describe('when certificate provider is acting online', () => {
beforeEach(() => {
cy.visit('/fixtures?redirect=/task-list&progress=payForTheLpa');
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/donor/signing-on-behalf.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
describe.skip('Signing on behalf of the donor', () => {
describe('Signing on behalf of the donor', () => {
beforeEach(() => {
cy.visit('/fixtures?redirect=/how-to-confirm-your-identity-and-sign&progress=payForTheLpa&donor=cannot-sign');

Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/supporter/start.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
describe.skip('Start', () => {
describe('Start', () => {
beforeEach(() => {
cy.visit('/supporter-start');
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"cypress:open": "node_modules/.bin/cypress open",
"cypress:run": "node_modules/.bin/cypress run -vvv",
"cypress:parallel": "cypress-parallel -s cypress:run -t 6 --spec cypress/e2e/**/*.cy.js cypress/smoke/*.cy.js",
"cypress:parallel-with-specs": "cypress-parallel -s cypress:run -t 2",
"cypress:parallel-with-specs": "cypress-parallel -s cypress:run -t 1",
"test": "jest"
},
"license": "MIT",
Expand Down

0 comments on commit 5e25a79

Please sign in to comment.