mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
'use strict';
|
|
|
|
const test = require('supertape');
|
|
const vim = require('./vim');
|
|
|
|
test('vim: no operations', (t) => {
|
|
const result = vim('hello', {});
|
|
|
|
t.notOk(result);
|
|
t.end();
|
|
});
|
|
|