diff --git a/integrationTests/Records/deleteRecordById.spec.ts b/integrationTests/Records/deleteRecordById.spec.ts new file mode 100644 index 0000000..a537f06 --- /dev/null +++ b/integrationTests/Records/deleteRecordById.spec.ts @@ -0,0 +1,5 @@ +import { OnspringClient } from './../../src'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('deleteRecordById', function () {}); diff --git a/integrationTests/Records/getRecordById.spec.ts b/integrationTests/Records/getRecordById.spec.ts new file mode 100644 index 0000000..0c88518 --- /dev/null +++ b/integrationTests/Records/getRecordById.spec.ts @@ -0,0 +1,5 @@ +import { OnspringClient } from './../../src'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('getRecordById', function () {}); diff --git a/integrationTests/Records/getRecordsByAppId.spec.ts b/integrationTests/Records/getRecordsByAppId.spec.ts new file mode 100644 index 0000000..7abef44 --- /dev/null +++ b/integrationTests/Records/getRecordsByAppId.spec.ts @@ -0,0 +1,5 @@ +import { OnspringClient } from './../../src'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('getRecordsByAppId', function () {}); diff --git a/integrationTests/Records/getRecordsByIds.spec.ts b/integrationTests/Records/getRecordsByIds.spec.ts new file mode 100644 index 0000000..7d38c5c --- /dev/null +++ b/integrationTests/Records/getRecordsByIds.spec.ts @@ -0,0 +1,5 @@ +import { OnspringClient } from './../../src'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('getRecordsByIds', function () {}); diff --git a/integrationTests/Records/queryRecords.spec.ts b/integrationTests/Records/queryRecords.spec.ts new file mode 100644 index 0000000..8595d66 --- /dev/null +++ b/integrationTests/Records/queryRecords.spec.ts @@ -0,0 +1,5 @@ +import { OnspringClient } from './../../src'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('queryRecords', function () {}); diff --git a/integrationTests/Records/saveRecord.spec.ts b/integrationTests/Records/saveRecord.spec.ts new file mode 100644 index 0000000..84db01d --- /dev/null +++ b/integrationTests/Records/saveRecord.spec.ts @@ -0,0 +1,5 @@ +import { OnspringClient } from './../../src'; +import { expect } from 'chai'; +import { baseURL, apiKey } from '../mochaRootHooks'; + +describe('saveRecord', function () {});