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
|
|
|
|
|
|
|
describe('ClassSpecHelper', () => {
|
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');
|
|
|
|
});
|
|
|
|
});
|