Skip to content
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

WIP: Convert to TypeScript #994

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c94d02b
REVERT ME: Dev setup
gitKrystan Dec 5, 2022
dbbeb9c
Add ember-cli-typescript
gitKrystan Dec 5, 2022
184ddd1
Check tsc as lint step
gitKrystan Dec 5, 2022
48958d6
Configure ts/eslint strictness
gitKrystan Dec 5, 2022
2ac042f
Rename adddon-test-support/adapter to TS
gitKrystan Dec 5, 2022
874ba77
Fix type checking errors for adapter.ts
gitKrystan Dec 6, 2022
db410ef
Rename addon-test-support/test-isoliation-validation to TS
gitKrystan Dec 6, 2022
4c66f5c
Fix type checking errors for test-isolation-validation.ts
gitKrystan Dec 10, 2022
2744e02
Rename qunit-configuration to TS
gitKrystan Dec 10, 2022
a11495e
Fix type checking errors for qunit-configuration
gitKrystan Dec 10, 2022
588c69f
Rename test-loader to TS
gitKrystan Dec 10, 2022
a9f4231
Fix type checking errors on test-loader
gitKrystan Dec 10, 2022
88f8a5f
Rename index to TS
gitKrystan Dec 10, 2022
77765f9
Fix type checking errors on index
gitKrystan Dec 10, 2022
e251730
Move ember-source/types imports
gitKrystan Dec 12, 2022
434068f
Merge info from ambient types
gitKrystan Jan 3, 2023
b76fb1f
Fix type-tests and lint
gitKrystan Jan 3, 2023
6d9a48d
Fix typesVersions
gitKrystan Jan 3, 2023
d114caa
Clean up waitForSettled types
gitKrystan Jan 3, 2023
8c419e2
Use exported @ember/test-helpers options
gitKrystan Jan 3, 2023
2039091
Add fixme
gitKrystan Jan 3, 2023
9f278ae
Set isTypeScriptProject to true
gitKrystan Jan 4, 2023
c658add
Use ember-cli-test-loader types
gitKrystan Jan 4, 2023
8a2fa12
Use updated qunit types
gitKrystan Jan 5, 2023
aa12055
Don't use private timeout type
gitKrystan Jan 5, 2023
815c4c0
Use override for moduleLoadFailure override
gitKrystan Jan 5, 2023
f68c09e
Remove FIXMEs from ember classic junk
gitKrystan Jan 5, 2023
f9c8fb0
Remove remaining FIXMEs
gitKrystan Jan 6, 2023
e823763
Revert to ambient ember-cli-test-loader types
gitKrystan Jan 30, 2023
a2ffc43
Fix config
gitKrystan Jan 31, 2023
f13fd8f
Upgrade @typescript-eslint dependencies
gitKrystan Jan 31, 2023
5073442
Use local @ember/test-helpers
gitKrystan Feb 27, 2023
55a235f
Upgrade @typescript-eslint/*
gitKrystan Feb 27, 2023
2f420c5
Use @ember/test-helpers master and node 16
gitKrystan Feb 27, 2023
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
Prev Previous commit
Next Next commit
Use override for moduleLoadFailure override
  • Loading branch information
gitKrystan committed Feb 27, 2023
commit 815c4c08462f6e229e5ba59414d12410418fbbe3
2 changes: 1 addition & 1 deletion addon-test-support/test-loader.ts
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ QUnit.done(function () {
});

export class TestLoader extends AbstractTestLoader {
moduleLoadFailure(moduleName: string, error: unknown): void {
override moduleLoadFailure(moduleName: string, error: unknown): void {
moduleLoadFailures.push(error);

QUnit.module('TestLoader Failures');