splatter-plot
Version:
Layout elements using concentric rings in JS + SVG
143 lines (129 loc) • 5.83 kB
JavaScript
;
define("splatter-plot-website/tests/lint/app.lint-test", [], function () {
"use strict";
QUnit.module('ESLint | app');
QUnit.test('app.js', function (assert) {
assert.expect(1);
assert.ok(true, 'app.js should pass ESLint\n\n');
});
QUnit.test('resolver.js', function (assert) {
assert.expect(1);
assert.ok(true, 'resolver.js should pass ESLint\n\n');
});
QUnit.test('router.js', function (assert) {
assert.expect(1);
assert.ok(true, 'router.js should pass ESLint\n\n');
});
QUnit.test('routes/application.js', function (assert) {
assert.expect(1);
assert.ok(false, 'routes/application.js should pass ESLint\n\n2:8 - \'appLayout\' is defined but never used. (no-unused-vars)\n3:8 - \'ironIcons\' is defined but never used. (no-unused-vars)\n4:8 - \'paperIconButton\' is defined but never used. (no-unused-vars)\n5:8 - \'exPanda\' is defined but never used. (no-unused-vars)\n8:22 - \'params\' is defined but never used. (no-unused-vars)');
});
QUnit.test('routes/demo-one.js', function (assert) {
assert.expect(1);
assert.ok(false, 'routes/demo-one.js should pass ESLint\n\n9:13 - Unexpected console statement. (no-console)');
});
QUnit.test('routes/demo-two.js', function (assert) {
assert.expect(1);
assert.ok(true, 'routes/demo-two.js should pass ESLint\n\n');
});
QUnit.test('routes/index.js', function (assert) {
assert.expect(1);
assert.ok(true, 'routes/index.js should pass ESLint\n\n');
});
});
define("splatter-plot-website/tests/lint/templates.template.lint-test", [], function () {
"use strict";
QUnit.module('TemplateLint');
QUnit.test('splatter-plot-website/templates/application.hbs', function (assert) {
assert.expect(1);
assert.ok(false, 'splatter-plot-website/templates/application.hbs should pass TemplateLint.\n\nsplatter-plot-website/templates/application.hbs\n 9:2 error Unexpected {{log}} usage. no-log\n 18:2 error Unexpected {{partial}} usage. no-partial\n');
});
QUnit.test('splatter-plot-website/templates/demo-one.hbs', function (assert) {
assert.expect(1);
assert.ok(true, 'splatter-plot-website/templates/demo-one.hbs should pass TemplateLint.\n\n');
});
QUnit.test('splatter-plot-website/templates/demo-two.hbs', function (assert) {
assert.expect(1);
assert.ok(true, 'splatter-plot-website/templates/demo-two.hbs should pass TemplateLint.\n\n');
});
QUnit.test('splatter-plot-website/templates/index.hbs', function (assert) {
assert.expect(1);
assert.ok(true, 'splatter-plot-website/templates/index.hbs should pass TemplateLint.\n\n');
});
QUnit.test('splatter-plot-website/templates/sidebar.hbs', function (assert) {
assert.expect(1);
assert.ok(true, 'splatter-plot-website/templates/sidebar.hbs should pass TemplateLint.\n\n');
});
});
define("splatter-plot-website/tests/lint/tests.lint-test", [], function () {
"use strict";
QUnit.module('ESLint | tests');
QUnit.test('test-helper.js', function (assert) {
assert.expect(1);
assert.ok(true, 'test-helper.js should pass ESLint\n\n');
});
QUnit.test('unit/routes/demo-one-test.js', function (assert) {
assert.expect(1);
assert.ok(true, 'unit/routes/demo-one-test.js should pass ESLint\n\n');
});
QUnit.test('unit/routes/demo-two-test.js', function (assert) {
assert.expect(1);
assert.ok(true, 'unit/routes/demo-two-test.js should pass ESLint\n\n');
});
QUnit.test('unit/routes/index-test.js', function (assert) {
assert.expect(1);
assert.ok(true, 'unit/routes/index-test.js should pass ESLint\n\n');
});
});
define("splatter-plot-website/tests/test-helper", ["splatter-plot-website/app", "splatter-plot-website/config/environment", "@ember/test-helpers", "ember-qunit"], function (_app, _environment, _testHelpers, _emberQunit) {
"use strict";
(0, _testHelpers.setApplication)(_app.default.create(_environment.default.APP));
(0, _emberQunit.start)();
});
define("splatter-plot-website/tests/unit/routes/demo-one-test", ["qunit", "ember-qunit"], function (_qunit, _emberQunit) {
"use strict";
(0, _qunit.module)('Unit | Route | demo-one', function (hooks) {
(0, _emberQunit.setupTest)(hooks);
(0, _qunit.test)('it exists', function (assert) {
let route = this.owner.lookup('route:demo-one');
assert.ok(route);
});
});
});
define("splatter-plot-website/tests/unit/routes/demo-two-test", ["qunit", "ember-qunit"], function (_qunit, _emberQunit) {
"use strict";
(0, _qunit.module)('Unit | Route | demo-two', function (hooks) {
(0, _emberQunit.setupTest)(hooks);
(0, _qunit.test)('it exists', function (assert) {
let route = this.owner.lookup('route:demo-two');
assert.ok(route);
});
});
});
define("splatter-plot-website/tests/unit/routes/index-test", ["qunit", "ember-qunit"], function (_qunit, _emberQunit) {
"use strict";
(0, _qunit.module)('Unit | Route | index', function (hooks) {
(0, _emberQunit.setupTest)(hooks);
(0, _qunit.test)('it exists', function (assert) {
let route = this.owner.lookup('route:index');
assert.ok(route);
});
});
});
define('splatter-plot-website/config/environment', [], function() {
var prefix = 'splatter-plot-website';
try {
var metaName = prefix + '/config/environment';
var rawConfig = document.querySelector('meta[name="' + metaName + '"]').getAttribute('content');
var config = JSON.parse(decodeURIComponent(rawConfig));
var exports = { 'default': config };
Object.defineProperty(exports, '__esModule', { value: true });
return exports;
}
catch(err) {
throw new Error('Could not read config from meta tag with name "' + metaName + '".');
}
});
require('splatter-plot-website/tests/test-helper');
EmberENV.TESTS_FILE_LOADED = true;
//# sourceMappingURL=tests.map