18 lines
428 B
JavaScript
18 lines
428 B
JavaScript
/* global ClassSpecHelper */
|
|
|
|
import './class_spec_helper';
|
|
|
|
describe('ClassSpecHelper', function () {
|
|
describe('itShouldBeAStaticMethod', () => {
|
|
beforeEach(() => {
|
|
class TestClass {
|
|
instanceMethod() { this.prop = 'val'; }
|
|
static staticMethod() {}
|
|
}
|
|
|
|
this.TestClass = TestClass;
|
|
});
|
|
|
|
ClassSpecHelper.itShouldBeAStaticMethod(ClassSpecHelper, 'itShouldBeAStaticMethod');
|
|
});
|
|
});
|