it('fails if the command is not recognized', (done) => {
      testMongo.execute('farts')
        .catch((err) => {
          expect(err).to.be.instanceof(TypeError);
          done();