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

21 lines
445 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-12-13 13:39:08 +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 {
2018-12-13 13:39:08 +05:30
instanceMethod() {
this.prop = 'val';
}
2017-08-17 22:00:37 +05:30
static staticMethod() {}
}
this.TestClass = TestClass;
});
ClassSpecHelper.itShouldBeAStaticMethod(ClassSpecHelper, 'itShouldBeAStaticMethod');
});
});