mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
20 lines
474 B
JavaScript
20 lines
474 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import 'core-js';
|
|
import Application from 'nomad-ui/app';
|
|
import config from 'nomad-ui/config/environment';
|
|
import * as QUnit from 'qunit';
|
|
import { setApplication } from '@ember/test-helpers';
|
|
import start from 'ember-exam/test-support/start';
|
|
import { setup } from 'qunit-dom';
|
|
import './helpers/flash-message';
|
|
|
|
setApplication(Application.create(config.APP));
|
|
|
|
setup(QUnit.assert);
|
|
|
|
start();
|