Skip to content

Commit

Permalink
test(e2e): resolve regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Feb 26, 2022
1 parent cd644ae commit d46d435
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('Basic email profile with succeeding login flows', () => {
const { identity } = session
expect(identity.id).to.not.be.empty
expect(identity.schema_id).to.equal('default')
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/default`)
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/ZGVmYXVsdA`)
expect(identity.traits.website).to.equal(website)
expect(identity.traits.email).to.equal(email)
})
Expand All @@ -60,7 +60,7 @@ describe('Basic email profile with succeeding login flows', () => {
const { identity } = session
expect(identity.id).to.not.be.empty
expect(identity.schema_id).to.equal('default')
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/default`)
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/ZGVmYXVsdA`)
expect(identity.traits.website).to.equal(website)
expect(identity.traits.email).to.equal(email)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ context('Registration success with email profile', () => {
expect(identity.id).to.not.be.empty
expect(identity.verifiable_addresses).to.have.length(1)
expect(identity.schema_id).to.equal('default')
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/default`)
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/ZGVmYXVsdA`)
expect(identity.traits.website).to.equal(website)
expect(identity.traits.email).to.equal(email)
expect(identity.traits.age).to.equal(age)
Expand All @@ -73,7 +73,7 @@ context('Registration success with email profile', () => {
expect(identity.id).to.not.be.empty
expect(identity.verifiable_addresses).to.have.length(1)
expect(identity.schema_id).to.equal('default')
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/default`)
expect(identity.schema_url).to.equal(`${APP_URL}/schemas/ZGVmYXVsdA`)
expect(identity.traits.website).to.equal(website)
expect(identity.traits.email).to.equal(email)
expect(identity.traits.age).to.be.undefined
Expand Down

0 comments on commit d46d435

Please sign in to comment.