fix(core): update
This commit is contained in:
32
test/test.browser.ts
Normal file
32
test/test.browser.ts
Normal file
@ -0,0 +1,32 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as webclient from '../ts/index';
|
||||
|
||||
let testClient: webclient.CsWebclient;
|
||||
|
||||
tap.test('should create an instance of webclient', async () => {
|
||||
testClient = new webclient.CsWebclient();
|
||||
expect(testClient).to.be.instanceOf(webclient.CsWebclient);
|
||||
});
|
||||
|
||||
tap.test('should return false when asked for present settings', async () => {
|
||||
const result = await testClient.isCookieLevelSet();
|
||||
expect(result).to.be.false;
|
||||
});
|
||||
|
||||
tap.test('should create a cookielevel setting', async () => {
|
||||
await testClient.setCookieLevels(['functional']);
|
||||
const result = await testClient.getCookieLevels();
|
||||
expect(result).to.contain('functional');
|
||||
});
|
||||
|
||||
tap.test('should return true when asked for present settings', async () => {
|
||||
const result = await testClient.isCookieLevelSet();
|
||||
expect(result).to.be.true;
|
||||
});
|
||||
|
||||
tap.test('should validity for present settings', async () => {
|
||||
const result = await testClient.isCookieLevelStillValid();
|
||||
expect(result).to.be.true;
|
||||
});
|
||||
|
||||
tap.start();
|
@ -1,8 +0,0 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as webclient from '../ts/index';
|
||||
|
||||
tap.test('first test', async () => {
|
||||
console.log(webclient.standardExport);
|
||||
});
|
||||
|
||||
tap.start();
|
Reference in New Issue
Block a user