balena-cli/tests/commands/env/rm.spec.ts
Scott Lowe 1325fb8c9a Use helpers version of cleanOutput in tests.
Simplify expect semantics in tests.

Change-type: patch
Signed-off-by: Scott Lowe <scott@balena.io>
2019-11-15 12:01:56 +01:00

18 lines
480 B
TypeScript

import { expect } from 'chai';
import { balenaAPIMock, runCommand } from '../../helpers';
describe('balena env rm', function() {
it('should successfully delete an environment variable', async () => {
const mock = balenaAPIMock();
mock.delete(/device_environment_variable/).reply(200, 'OK');
const { out, err } = await runCommand('env rm 144690 -d -y');
expect(out.join('')).to.equal('');
expect(err.join('')).to.equal('');
// @ts-ignore
mock.remove();
});
});