How to disable Velocity module testing in Meteor?

I am using the mike: mocha package and I am trying to figure out how to disable testing.

There are times when I need a demo of the application I'm working on on my local machine. In such situations, I would like to launch the application without a green dot in the upper right corner.

+4
source share
3 answers

After some googling, I found that it works

meteor --production run

will take care of that.

.. , cannotto90, , . , ctrl+c , meteor.

+7

:

veloff.sh

 #!/bin/bash
 #
 meteor remove xolvio:cucumber
 meteor run

velon.sh

 #!/bin/bash
 #
 meteor add xolvio:cucumber
 meteor run

. : xolvio: , . , .

.

+4

mocha-esque Meteor, Velocity . . : https://github.com/taromero/latte.

0
source

All Articles