我正在尝试使用Mocha运行一些React测试。我的react组件通过Babel的from python_file import defined_function
filename = 'name of the file'
results = defined_function(filename)
具有别名,它们可以工作,但是在运行测试时它们不工作。
这是运行睾丸时的错误:
RuntimeError: Execution exceeded time limit, max runtime is 30s
这是我的.babelrc配置:
class Country(object):
""" Modeling a country immigration. """
def __init__(name, immigrants, population, disease_numbers):
self.name = name
self.immigrants = immigrants
self.infected = population
self.disease_numbers = disease_numbers
def update_pop(self, year, rate):
self.infected = self.infected * year * rate
我的mocha-setup.js文件包括:
"babel-plugin-module-resolver": "^3.1.1",
这是我用来运行测试的命令:
Error: Cannot find module 'Styles/dimensions'
关于如何使Mocha编译这些别名的任何想法?没有别名的测试运行文件,但是Mocha在运行测试之前似乎没有运行别名编译。