El uso de un módulo puede hacer que sea más fácil tener una configuración/desmontaje global para su suite de pruebas Aquí hay un ejemplo usando RequireJS (módulos AMD):
En primer lugar, vamos a definir un entorno de prueba con nuestro mundial instalación/desmontaje:
// test-env.js
define('test-env', [], function() {
// One can store globals, which will be available within the
// whole test suite.
var my_global = true;
before(function() {
// global setup
});
return after(function() {
// global teardown
});
});
En nuestro corredor JS (incluido en el corredor HTML de moca, a lo largo de la otra bibliotecas y archivos de prueba, como <script type="text/javascript">…</script>
, o mejor, como un archivo externo de JS):
require([
// this is the important thing: require the test-env dependency first
'test-env',
// then, require the specs
'some-test-file'
], function() {
mocha.run();
});
some-test-file.js
podrían implementarse como esto:
// some-test-file.js
define(['unit-under-test'], function(UnitUnderTest) {
return describe('Some unit under test', function() {
before(function() {
// locally "global" setup
});
beforeEach(function() {
});
afterEach(function() {
});
after(function() {
// locally "global" teardown
});
it('exists', function() {
// let's specify the unit under test
});
});
});
¿Puedes explicar un poco qué está pasando allí? – Gobliins