Skip to content

Commit

Permalink
Merge branch 'main' into fix/a11y-audit-default-to-light-theme
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronperera authored Dec 2, 2024
2 parents 791fd47 + 8c6b1aa commit 3fcaf37
Show file tree
Hide file tree
Showing 13 changed files with 1 addition and 13 deletions.
1 change: 0 additions & 1 deletion addons/api/tests/unit/services/indexed-db-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class SessionService extends Service {}
module('Unit | Service | indexed-db', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
this.owner.register('service:session', SessionService);

Expand Down
1 change: 0 additions & 1 deletion addons/api/tests/unit/services/store-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'dummy/tests/helpers';
module('Unit | Service | store', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let service = this.owner.lookup('service:store');
assert.ok(service);
Expand Down
1 change: 0 additions & 1 deletion addons/core/tests/unit/initializers/deprecations-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ module('Unit | Initializer | deprecations', function (hooks) {
run(this.application, 'destroy');
});

// TODO: Replace this with your real tests.
test('it works', async function (assert) {
await this.application.boot();

Expand Down
1 change: 0 additions & 1 deletion addons/core/tests/unit/services/clock-tick-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'ember-qunit';
module('Unit | Service | clock-tick', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let service = this.owner.lookup('service:clock-tick');
assert.ok(service);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ module('Unit | Instance Initializer | feature-edition', function (hooks) {

this.instance = this.application.buildInstance();
});

hooks.afterEach(function () {
run(this.instance, 'destroy');
run(this.application, 'destroy');
});

// TODO: Replace this with your real tests.
test('it works', async function (assert) {
await this.instance.boot();

Expand Down
1 change: 0 additions & 1 deletion ui/admin/tests/unit/services/feature-edition-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'admin/tests/helpers';
module('Unit | Service | features', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let service = this.owner.lookup('service:features');
assert.ok(service);
Expand Down
1 change: 0 additions & 1 deletion ui/admin/tests/unit/services/session-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'admin/tests/helpers';
module('Unit | Service | session', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let service = this.owner.lookup('service:session');
assert.ok(service);
Expand Down
1 change: 0 additions & 1 deletion ui/desktop/tests/integration/helpers/group-by-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { hbs } from 'ember-cli-htmlbars';
module('Integration | Helper | group-by', function (hooks) {
setupRenderingTest(hooks);

// TODO: Replace this with your real tests.
test('it renders', async function (assert) {
this.set('inputValue', [
{ group: 'a', id: '1' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'ember-qunit';
module('Unit | Controller | scopes/scope/authenticate', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let controller = this.owner.lookup('controller:scopes/scope/authenticate');
assert.ok(controller);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module(
function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let controller = this.owner.lookup(
'controller:scopes/scope/projects/settings/index',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'desktop/tests/helpers';
module('Unit | Service | client-agent-sessions', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let service = this.owner.lookup('service:client-agent-sessions');
assert.ok(service);
Expand Down
1 change: 0 additions & 1 deletion ui/desktop/tests/unit/services/session-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'desktop/tests/helpers';
module('Unit | Service | session', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let service = this.owner.lookup('service:session');
assert.ok(service);
Expand Down
1 change: 0 additions & 1 deletion ui/desktop/tests/unit/services/store-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { setupTest } from 'desktop/tests/helpers';
module('Unit | Service | store', function (hooks) {
setupTest(hooks);

// TODO: Replace this with your real tests.
test('it exists', function (assert) {
let service = this.owner.lookup('service:store');
assert.ok(service);
Expand Down

0 comments on commit 3fcaf37

Please sign in to comment.