Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off Velocity unit testing in Meteor? [duplicate]

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

There are times when I have to demo the app I'm working on in my local machine. For those situations, I would like to run the application without the green dot on the top right.

like image 314
Gene Parcellano Avatar asked Dec 20 '22 07:12

Gene Parcellano


1 Answers

After some googling I found that running

meteor --production run

takes care of this.

Note: As @cannotto90 noted below, running this command will minifiy the client code and code refresh will not be in effect. To get back to coding, you will need to stop meteor first ctrl+c and run meteor again using the meteor command.

like image 62
Gene Parcellano Avatar answered Feb 08 '23 23:02

Gene Parcellano