All files / ee/app/assets/javascripts/ee_trial_banner index.js

100% Statements 4/4
50% Branches 1/2
100% Functions 1/1
100% Lines 4/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11        4x 4x 4x 4x      
import $ from 'jquery';
import EETrialBanner from './ee_trial_banner';
 
export default function initEETrialBanner() {
  const $trialBanner = $('.js-gitlab-ee-license-banner');
  Eif ($trialBanner.length) {
    const eeTrialBanner = new EETrialBanner($trialBanner);
    eeTrialBanner.init();
  }
}