Ci sono alcuni modi in cui puoi farlo.
C'è: Funzionalità di Jasmine Focused Specs (2.2): http://jasmine.github.io/2.2/focused_specs.html
Le specifiche di messa a fuoco lo faranno in modo che siano le uniche specifiche che vengono eseguite. Qualsiasi specifica dichiarata adatta è focalizzata.
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();
});
});
Tuttavia, non mi piace l'idea di modificare i miei test (fit e fdescribe) per eseguirli in modo selettivo. Preferisco usare un test runner come il karma che può filtrare i test usando un'espressione regolare.
Ecco un esempio usando grugnito .
$ grunt karma:dev watch --grep=mypattern
Se stai usando gulp (che è il mio task runner preferito), puoi passare argomenti in gulp-karma con yarg e schemi di corrispondenza impostando la configurazione del karma.
Un po 'così:
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);
Vedi il mio succo: https://gist.github.com/rimian/0f9b88266a0f63696f21
Quindi ora posso eseguire una singola specifica usando la descrizione:
Esecuzione del test locale: (eseguito 1 su 14 (ignorato 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
Vedi anche: https://github.com/karma-runner/karma-jasmine