mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Application from 'consul-ui/app';
|
|
import config from 'consul-ui/config/environment';
|
|
import * as QUnit from 'qunit';
|
|
import { setApplication } from '@ember/test-helpers';
|
|
import { setup } from 'qunit-dom';
|
|
import { registerWaiter } from '@ember/test';
|
|
import './helpers/flash-message';
|
|
import start from 'ember-exam/test-support/start';
|
|
import setupSinon from 'ember-sinon-qunit';
|
|
|
|
import ClientConnections from 'consul-ui/services/client/connections';
|
|
|
|
let activeRequests = 0;
|
|
registerWaiter(function () {
|
|
return activeRequests === 0;
|
|
});
|
|
ClientConnections.reopen({
|
|
addVisibilityChange: function () {
|
|
// for the moment don't listen for tab hiding during testing
|
|
// TODO: make this controllable from testing so we can fake a tab hide
|
|
},
|
|
purge: function () {
|
|
const res = this._super(...arguments);
|
|
activeRequests = 0;
|
|
return res;
|
|
},
|
|
acquire: function () {
|
|
activeRequests++;
|
|
return this._super(...arguments);
|
|
},
|
|
release: function () {
|
|
const res = this._super(...arguments);
|
|
activeRequests--;
|
|
return res;
|
|
},
|
|
});
|
|
const application = Application.create(config.APP);
|
|
application.inject('component:copy-button', 'clipboard', 'service:clipboard/local-storage');
|
|
|
|
setApplication(application);
|
|
|
|
setup(QUnit.assert);
|
|
setupSinon();
|
|
|
|
setup(QUnit.assert);
|
|
|
|
start();
|