From 90aa4b54e0edf270c28c31c8e209754d6dcc3ed0 Mon Sep 17 00:00:00 2001 From: Gregor Wolf Date: Sat, 6 Feb 2021 17:42:13 +0100 Subject: [PATCH] test: add first dummy test --- __tests__/cds-azure-ad.test.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 __tests__/cds-azure-ad.test.js 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) + } + }) + }) +})