Remove unused eslint-disables

This commit is contained in:
Evan Hahn
2022-06-03 21:07:51 +00:00
committed by GitHub
parent 63189f3f91
commit f50a6abe36
41 changed files with 68 additions and 142 deletions

View File

@@ -1,18 +1,16 @@
// Copyright 2021 Signal Messenger, LLC
// Copyright 2021-2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
/* global window */
const { ipcRenderer } = require('electron');
const fastGlob = require('fast-glob');
window.assert = require('chai').assert;
// This is a hack to let us run TypeScript tests in the renderer process. See the
// code in `test/index.html`.
/* eslint-disable global-require, import/no-extraneous-dependencies */
const fastGlob = require('fast-glob');
window.test = {
onComplete(info) {
return ipcRenderer.invoke('ci:test-electron:done', info);