Skip to content

Commit

Permalink
test: add first dummy test
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorwolf committed Feb 6, 2021
1 parent 396aaf9 commit 90aa4b5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions __tests__/cds-azure-ad.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
describe('Azure AD and Azure AD B2C Custom-Defined Authentication for SAP CDS (CAP)', () => {
describe('Basic Tests', () => {
test('- can the library be instanciated', async () => {
try {
const cdsAzureAD = require('../index')
console.log(typeof cdsAzureAD)
} catch (error) {
console.log(error)
}
})
})
})

0 comments on commit 90aa4b5

Please sign in to comment.