Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: temporary fix for flaky test related to mocha bug #2545

Merged
merged 2 commits into from
Mar 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion system-test/kitchen.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable no-undef */

// Copyright 2017 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -18,7 +20,10 @@ import * as mv from 'mv';
import {ncp} from 'ncp';
import {promisify} from 'util';
import * as tmp from 'tmp';
import {describe, it, afterEach} from 'mocha';

//TODO: uncomment this line and remove the eslint disable once
// https://github.com/mochajs/mocha/issues/4598 is resolved
//import {describe, it, afterEach} from 'mocha';

const mvp = promisify(mv);
const ncpp = promisify(ncp);
Expand Down