Making mocha "use strict" when running in node

Is there a way to make Mocha run tests in strict mode when running on node?

Normally you can enable this in node by running node --use_strict. Is there a way to do the same thing for mocha?

I would just start test scripts with 'use strict';