Hay algunas formas de hacerlo.
Hay: Especificaciones enfocadas de la característica de Jasmine (2.2): http://jasmine.github.io/2.2/focused_specs.html
Las especificaciones de enfoque harán que sean las únicas especificaciones que se ejecutan. Cualquier especificación declarada con ajuste está enfocada.
describe("Focused specs", function() {
fit("is focused and will run", function() {
expect(true).toBeTruthy();
});
it('is not focused and will not run', function(){
expect(true).toBeFalsy();
});
});
Sin embargo, no me gusta la idea de editar mis pruebas (ajustar y describir) para ejecutarlas selectivamente. Prefiero usar un corredor de prueba como el karma que puede filtrar las pruebas usando una expresión regular.
Aquí hay un ejemplo usando gruñido .
$ grunt karma:dev watch --grep=mypattern
Si está usando gulp (que es mi corredor de tareas favorito), puede pasar args en gulp-karma con hilos y patrones de coincidencia configurando la configuración de karma.
Un poco como esto:
var Args = function(yargs) {
var _match = yargs.m || yargs.match;
var _file = yargs.f || yargs.file;
return {
match: function() { if (_match) { return {args: ['--grep', _match]} } }
};
}(args.argv);
var Tasks = function() {
var test = function() {
return gulp.src(Files.testFiles)
.pipe(karma({ configFile: 'karma.conf.js', client: Args.match()}))
.on('error', function(err) { throw err; });
};
return {
test: function() { return test() }
}
}(Args);
gulp.task('default', ['build'], Tasks.test);
Vea mi esencia: https://gist.github.com/rimian/0f9b88266a0f63696f21
Entonces, ahora puedo ejecutar una sola especificación usando la descripción:
Mi ejecución de prueba local: (Ejecutado 1 de 14 (saltado 13))
gulp -m 'triggers the event when the API returns success'
[20:59:14] Using gulpfile ~/gulpfile.js
[20:59:14] Starting 'clean'...
[20:59:14] Finished 'clean' after 2.25 ms
[20:59:14] Starting 'build'...
[20:59:14] Finished 'build' after 17 ms
[20:59:14] Starting 'default'...
[20:59:14] Starting Karma server...
INFO [karma]: Karma v0.12.31 server started at http://localhost:9876/
INFO [launcher]: Starting browser Chrome
WARN [watcher]: All files matched by "/spec/karma.conf.js" were excluded.
INFO [Chrome 42.0.2311 (Mac OS X 10.10.3)]: Connected on socket hivjQFvQbPdNT5Hje2x2 with id 44705181
Chrome 42.0.2311 (Mac OS X 10.10.3): Executed 1 of 14 (skipped 13) SUCCESS (0.012 secs / 0.009 secs)
[20:59:16] Finished 'default' after 2.08 s
Ver también: https://github.com/karma-runner/karma-jasmine