Existem algumas maneiras de fazer isso.
Há: recurso Jasmine's Focused Specs (2.2): http://jasmine.github.io/2.2/focused_specs.html
As especificações de foco farão com que sejam as únicas especificações executadas. Qualquer especificação declarada com ajuste é focada.
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();
});
});
No entanto, eu realmente não gosto da ideia de editar meus testes (fit e fdescribe) para executá-los seletivamente. Prefiro usar um corredor de teste como o karma, que pode filtrar os testes usando uma expressão regular.
Aqui está um exemplo usando o grunhido .
$ grunt karma:dev watch --grep=mypattern
Se você estiver usando gulp (que é o meu executor de tarefas favorito), poderá passar argumentos para o gulp-karma executor de com yargs e padrões de correspondência definindo a configuração do karma.
Mais ou menos assim:
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);
Veja minha essência: https://gist.github.com/rimian/0f9b88266a0f63696f21
Então agora eu posso executar uma única especificação usando a descrição:
Minha execução de teste local: (Executado 1 de 14 (ignorado 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
Consulte também: https://github.com/karma-runner/karma-jasmine