abby-client
Version:
This is the client library for Greetz's very own A/B testing platform.
19 lines (15 loc) • 410 B
JavaScript
const expect = require('chai').expect;
const abby = require('../lib/client');
describe('client', () => {
let classUnderTest;
beforeEach(() => {
classUnderTest = abby({
tags: 'test, production',
apiEndpoint: 'https://abby.io/api/v1/'
});
});
describe('when there is no user id set in cookie', () => {
beforeEach(() => {
});
});
});