Skip to content

Commit

Permalink
Update simpleOAuthAuthenticationTest.cy.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mishalalex authored Jan 6, 2024
1 parent 6d2f2d5 commit edf0c06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/api-tests/simpleOAuthAuthenticationTest.cy.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
describe.skip('Simple OAuth Authentication Test',() => {
let bearerToken = '';
before('A simple Oauth authentication test', () => {
const clientId = '74744e504ecc97dec860';
const clientSecret = '0b1bb057f8c3e7c95563f0f3a28b2a20ae9c4934';
const clientCode = '277ae688d109aadc92c2';
const clientId = '<enter_client_id_here>';
const clientSecret = '<enter_client_secret_here>';
const clientCode = '<enter_client_code_here>';
// 1. get oauth 2.0 access token
cy.request({
method:'POST',
Expand Down Expand Up @@ -38,4 +38,4 @@ describe.skip('Simple OAuth Authentication Test',() => {
expect(response.body[1].id).to.eq(430858018)
})
})
})
})

0 comments on commit edf0c06

Please sign in to comment.