forked from boranton/testcafe-workshop
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
(function(window) {
|
|
'use strict'
|
|
window.stubs = window.stubs || {}
|
|
window.stubs.getViewStub = function getViewStub() {
|
|
return {
|
|
bind: function() {}
|
|
}
|
|
}
|
|
})(window)
|