eslint-migration - disable warnings/errors
Disable warnings and errors on initial code empty functions/require remove transations stub from spec test
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
/* eslint "@typescript-eslint/no-var-requires": 0 */
|
||||
const Application = require('spectron').Application;
|
||||
/* eslint "@typescript-eslint/no-var-requires": 0 */
|
||||
const electronPath = require('electron'); // Require Electron from the binaries included in node_modules.
|
||||
/* eslint "@typescript-eslint/no-var-requires": 0 */
|
||||
const path = require('path');
|
||||
|
||||
export default function setup() {
|
||||
export default function setup(): void {
|
||||
beforeEach(async function () {
|
||||
this.app = new Application({
|
||||
// Your electron path can be any binary
|
||||
|
||||
Reference in New Issue
Block a user