diff --git a/__tests__/cds-azure-ad.test.js b/__tests__/cds-azure-ad.test.js new file mode 100644 index 0000000..0d21b34 --- /dev/null +++ b/__tests__/cds-azure-ad.test.js @@ -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) + } + }) + }) +})