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

dummy_spec.js « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25dbb624adae37b953800c00ee702d9c9de95909 (plain)
1
2
3
4
5
6
7
describe('dummy test', () => {
  it('waits for a loooooong time', () => {
    setTimeout(() => {
      throw new Error('broken');
    }, 10000);
  });
});