Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup_globals.js « setup « test_helpers « frontend_integration « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac5aeb1dd723dc4985cf62a008959821d677646c (plain)
1
2
3
4
5
6
7
8
9
10
import { initializeTestTimeout } from 'helpers/timeout';

initializeTestTimeout(process.env.CI ? 20000 : 7000);

beforeEach(() => {
  window.gon = {
    api_version: 'v4',
    relative_url_root: '',
  };
});