summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/class_spec_helper_spec.js
blob: 533d5687bdef1ca8246a11cf82f925cd1697c8ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* global ClassSpecHelper */

import './class_spec_helper';

describe('ClassSpecHelper', () => {
  let testContext;

  beforeEach(() => {
    testContext = {};
  });

  describe('itShouldBeAStaticMethod', () => {
    beforeEach(() => {
      class TestClass {
        instanceMethod() {
          this.prop = 'val';
        }
        static staticMethod() {}
      }

      testContext.TestClass = TestClass;
    });

    ClassSpecHelper.itShouldBeAStaticMethod(ClassSpecHelper, 'itShouldBeAStaticMethod');
  });
});