The easiest way is to put your “specs” (JavaScript tests) into some directory
in your code, then in your python tests, add a new TestCase with just one test
that runs all your JavaScript tests.
The simplest solution is to set capture_output to False, so you see the output
from the js tests on the console. Something like this:
import pytest
from pyenvjasmine.runner import Runner
class TestJavaScript(object):
def test_my_javascript(self):
runner = Runner(
testdir='/path/to/my/testdir',
configfile='relative/path/to/configfile',
testing_environment='phantomjs')
success, stdout = runner.run()
# assert on success, will be true if tests passed, False if any
# test failed
assert success, "One or more javascript tests have failed"
# you can inspect stdout if you want to get more info, but it
# will be printed to the console stdout anyway
assert b'Total: 120' in stdout
In this example, the phantomjs browse/engine is used, replace that with
rhino to run tests on rhino + jasmine 1.x.