From 1c14dafae4360ae4dcac7735d09968d037bc147a Mon Sep 17 00:00:00 2001 From: Boris Sekachev Date: Sat, 24 Oct 2020 20:37:16 +0300 Subject: [PATCH] Added .eslintrc.js for tests (#2355) --- tests/.eslintrc.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/.eslintrc.js diff --git a/tests/.eslintrc.js b/tests/.eslintrc.js new file mode 100644 index 00000000..7d94dfac --- /dev/null +++ b/tests/.eslintrc.js @@ -0,0 +1,10 @@ +// Copyright (C) 2020 Intel Corporation +// +// SPDX-License-Identifier: MIT + +module.exports = { + env: { + 'cypress/globals': true, + }, + plugins: ['cypress'] +};