Using Testem with Mocha and Qunit

I am not sure but is it possible to use the following configuration? I want to use Qunit for unit testing and and a custom launcher to launch my Mocha functional tests.

{ “framework”: “qunit”, “test_page”: “tests/index.html?nojshint&coverage”, “on_start”: “ember build”, “cwd”: “dist”, “phantomjs_debug_port”: 9000, “launch_in_ci”: [“Mocha”], “launch_in_dev”: [“Chrome”], “debug”: true, “launchers”: { “Mocha”: { “command”: “mocha -d -t 20000 -R tap tests/functional/globals.js tests/functional/setup.js tests/functional/**/*.js” } } }