"use strict"; /* global describe it */ require('should'); const commands = require('../lib/command-group'); describe('#command-group', function() { it('should contain predefined value', function() { commands['balance'].should.equal('balance'); commands['harga'].should.equal('price'); }) })