debian-mirror-gitlab/spec/frontend/__helpers__/class_spec_helper_spec.js

27 lines
517 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
2020-03-13 15:44:24 +05:30
describe('ClassSpecHelper', () => {
let testContext;
beforeEach(() => {
testContext = {};
});
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() {}
}
2020-03-13 15:44:24 +05:30
testContext.TestClass = TestClass;
2017-08-17 22:00:37 +05:30
});
ClassSpecHelper.itShouldBeAStaticMethod(ClassSpecHelper, 'itShouldBeAStaticMethod');
});
});