mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-10 23:39:31 -05:00
17 lines
267 B
JavaScript
17 lines
267 B
JavaScript
var sinon = require('sinon'),
|
|
module = window.module,
|
|
sandbox;
|
|
|
|
module("onClick", {
|
|
setup: function() {
|
|
sandbox = sinon.sandbox.create();
|
|
|
|
},
|
|
teardown: function() {
|
|
|
|
}
|
|
});
|
|
|
|
test('sample', function() {
|
|
ok(true);
|
|
});
|