1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/test/e2e/api/client/feature.e2e.test.js
2020-02-20 08:34:06 +01:00

37 lines
1.0 KiB
JavaScript

'use strict';
const { test } = require('ava');
const { setupApp } = require('./../../helpers/test-helper');
test.serial('returns three feature toggles', async t => {
const { request, destroy } = await setupApp('feature_api_client');
return request
.get('/api/client/features')
.expect('Content-Type', /json/)
.expect(200)
.expect(res => {
t.true(res.body.features.length === 3);
})
.then(destroy);
});
test.serial('gets a feature by name', async t => {
t.plan(0);
const { request, destroy } = await setupApp('feature_api_client');
return request
.get('/api/client/features/featureX')
.expect('Content-Type', /json/)
.expect(200)
.then(destroy);
});
test.serial('cant get feature that dose not exist', async t => {
t.plan(0);
const { request, destroy } = await setupApp('feature_api_client');
return request
.get('/api/client/features/myfeature')
.expect('Content-Type', /json/)
.expect(404)
.then(destroy);
});