registry tests

This commit is contained in:
guybedford
2014-02-15 19:54:56 +02:00
parent ca5d8df404
commit aaf1a2cfc8
9 changed files with 65 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
var $ = require('bootstrap');
require('bootstrap/css/bootstrap.css!');
var template = require('./bootstrap.html!text');
exports['modal test'] = function(done) {
$("#sandbox").html(template);
$('#myModal').on('shown.bs.modal', function() {
done();
});
$('#sandbox .btn').click();
}