Skip to content

Commit

Permalink
Merge pull request #223 from camunda/alpha
Browse files Browse the repository at this point in the history
Add PR template
  • Loading branch information
jwulf authored Jul 29, 2024
2 parents 86d4491 + d1ec5b5 commit 62e99d0
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 1,012 deletions.
21 changes: 21 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Description of the change

[Describe your changes here]

## Type of change

- [ ] Bug fix
- [ ] New feature
- [ ] Breaking change
- [ ] Documentation update

## Checklist

- [ ] I have read the [CONTRIBUTING](../CONTRIBUTING.md) doc
- [ ] I have opened this pull request against the `alpha` branch
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added necessary documentation (if appropriate)

## Further comments

[If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...]
12 changes: 5 additions & 7 deletions src/__tests__/oauth/OAuthProvider.unit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ describe('OAuthProvider', () => {
server = http
.createServer((req, res) => {
if (req.method === 'POST') {
let body = ''
req.on('data', (chunk) => {
body += chunk
// let body = ''
req.on('data', (/*chunk*/) => {
// body += chunk
})

req.on('end', () => {
console.log(body)
// console.log(body)
res.writeHead(200, { 'Content-Type': 'application/json' })
const expiresIn = 2 // seconds
const token = requested
Expand Down Expand Up @@ -593,9 +593,7 @@ describe('OAuthProvider', () => {
}
})

server.listen(3033, () => {
console.log('Server running on port 3033')
})
server.listen(3033)

const oAuthProvider = constructOAuthProvider({
CAMUNDA_AUTH_STRATEGY: 'BASIC',
Expand Down
67 changes: 0 additions & 67 deletions zeebe-extra/.github/workflows/build-docs.yml

This file was deleted.

18 changes: 0 additions & 18 deletions zeebe-extra/.github/workflows/test-camunda-saas-push.yml

This file was deleted.

26 changes: 0 additions & 26 deletions zeebe-extra/.github/workflows/test.yml

This file was deleted.

Loading

0 comments on commit 62e99d0

Please sign in to comment.