Skip to content

chore(dev-deps): Update ember dev deps #14119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 0 additions & 62 deletions packages/ember/config/ember-try.js

This file was deleted.

33 changes: 12 additions & 21 deletions packages/ember/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"lint:ts": "tsc",
"fix": "eslint . --format stylish --fix",
"start": "ember serve",
"test": "ember b --prod && yarn ember test",
"test:all": "ember try:each",
"test": "ember b --prod && ember test",
"prepack": "ember ts:precompile",
"postpack": "ember ts:clean"
},
Expand All @@ -44,42 +43,34 @@
},
"devDependencies": {
"@ember/optional-features": "~1.3.0",
"@ember/test-helpers": "2.9.4",
"@ember/test-helpers": "4.0.4",
"@embroider/test-setup": "~4.0.0",
"@glimmer/component": "~1.1.2",
"@glimmer/tracking": "~1.1.2",
"@types/ember": "~3.16.5",
"@types/ember-qunit": "~3.4.9",
"@types/ember-resolver": "5.0.13",
"@types/ember__debug": "^3.16.5",
"@types/qunit": "~2.9.1",
"@types/qunit": "~2.19.11",
"@types/rsvp": "~4.0.3",
"babel-eslint": "~10.1.0",
"broccoli-asset-rev": "~3.0.0",
"ember-cli": "~4.8.0",
"ember-cli-dependency-checker": "~3.3.1",
"ember-cli": "~4.12.3",
"ember-cli-dependency-checker": "~3.3.2",
"ember-cli-inject-live-reload": "~2.1.0",
"ember-cli-sri": "~2.1.1",
"ember-cli-terser": "~4.0.2",
"ember-cli-typescript-blueprints": "~3.0.0",
"ember-disable-prototype-extensions": "~1.1.3",
"ember-load-initializers": "~2.1.1",
"ember-maybe-import-regenerator": "1.0.0",
"ember-qunit": "~6.0.0",
"ember-resolver": "11.0.0",
"ember-sinon-qunit": "7.1.4",
"ember-source": "~4.8.0",
"ember-source-channel-url": "~2.0.1",
"ember-qunit": "~8.1.0",
"ember-resolver": "13.0.2",
"ember-sinon-qunit": "7.5.0",
"ember-source": "~4.12.4",
"ember-template-lint": "~4.16.1",
"ember-try": "~2.0.0",
"ember-window-mock": "~0.8.1",
"eslint-plugin-ember": "11.9.0",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-qunit": "8.0.0",
"loader.js": "~4.7.0",
"qunit": "~2.19.2",
"qunit-dom": "~2.0.0",
"sinon": "15.2.0",
"qunit": "~2.22.0",
"qunit-dom": "~3.2.1",
"sinon": "19.0.2",
"webpack": "~5.95.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ember/tests/helpers/setup-sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function setupSentryTest(hooks: NestedHooks): void {
return true;
};

setupOnerror(function (error) {
setupOnerror(function (error: Error) {
errorMessages.push(error.message);
throw error;
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ import { setupTest } from 'ember-qunit';
import { module, test } from 'qunit';
import sinon from 'sinon';

import type { SentryTestContext } from '../helpers/setup-sentry';
import { setupSentryTest } from '../helpers/setup-sentry';

module('Unit | Utility | instrument-route-performance', function (hooks) {
setupTest(hooks);
setupSentryTest(hooks);

test('wrapped Route hooks maintain the current context', function (assert) {
test('wrapped Route hooks maintain the current context', function (this: SentryTestContext, assert) {
const beforeModel = sinon.spy();
const model = sinon.spy();
const afterModel = sinon.spy();
Expand Down
Loading
Loading