debian-mirror-gitlab/spec/javascripts/helpers/class_spec_helper_spec.js

19 lines
428 B
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
/* global ClassSpecHelper */
2017-09-10 17:25:29 +05:30
import './class_spec_helper';
2017-08-17 22:00:37 +05:30
2018-10-15 14:42:47 +05:30
describe('ClassSpecHelper', function () {
2018-03-17 18:26:18 +05:30
describe('itShouldBeAStaticMethod', () => {
2017-08-17 22:00:37 +05:30
beforeEach(() => {
class TestClass {
instanceMethod() { this.prop = 'val'; }
static staticMethod() {}
}
this.TestClass = TestClass;
});
ClassSpecHelper.itShouldBeAStaticMethod(ClassSpecHelper, 'itShouldBeAStaticMethod');
});
});