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

Add tests to cover enableWhen exists logic for integer, decimal and b… #63

Merged
merged 27 commits into from
Nov 27, 2023
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f7048fe
Add tests to cover enableWhen exists logic for integer, decimal and b…
projkov Nov 10, 2023
3609a4a
Update github actions
projkov Nov 13, 2023
f136599
Update tests workflow to run yarn test
projkov Nov 15, 2023
65ace97
Change aidbox license name env variable
projkov Nov 20, 2023
2009ffd
Update github tests action
projkov Nov 20, 2023
7766930
Fix tests actions
projkov Nov 20, 2023
287de15
Update tests.yml
projkov Nov 20, 2023
c1a722e
WIP: Fix package.json
projkov Nov 20, 2023
162c8e3
WIP: update tsconfig
projkov Nov 20, 2023
1f286d7
WIP: Remove prepare from package.json
projkov Nov 20, 2023
a5ec50e
WIP: Temporary separate test running
projkov Nov 20, 2023
a7d93ae
WIP: Remove typecheck step temporary
projkov Nov 20, 2023
196b62f
WIP: Add test to cover problems with isEmpty
projkov Nov 20, 2023
c756365
WIP: Update isValueEmpty method
projkov Nov 20, 2023
087deaf
WIP: Skip not actual tests
projkov Nov 21, 2023
a8ab4be
WIP: Update tests actions
projkov Nov 21, 2023
ab8924a
WIP: Use ./run_test.sh for tests
projkov Nov 21, 2023
bba2568
Refactor isValueEmpty method
projkov Nov 21, 2023
55a08d2
Update tsconfig to ignore test files
projkov Nov 23, 2023
1b6ed7b
Update tests github actions file
projkov Nov 23, 2023
aa5e27d
Add warning for exists operator
projkov Nov 23, 2023
b37c539
Move up typecheck for github-actions
projkov Nov 27, 2023
58af5fa
Update node versions for github-actions
projkov Nov 27, 2023
cccebc5
Updates after review
projkov Nov 27, 2023
de1d05f
Rollback setupTests
projkov Nov 27, 2023
c2ca96d
Add network-concurrency 1 to github-actions
projkov Nov 27, 2023
aeea6aa
Update package version
projkov Nov 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
Update tsconfig to ignore test files
Ref: #60
  • Loading branch information
projkov committed Nov 23, 2023
commit 55a08d2f67f8514dc5b54d45f39eb176d8ac2eba
18 changes: 14 additions & 4 deletions sdc-qrf/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["DOM", "ES5", "DOM.Iterable"],
"lib": [
"DOM",
"ES5",
"DOM.Iterable"
],
"baseUrl": "./src",
"sourceMap": true,
"outDir": "./lib",
Expand All @@ -16,6 +20,12 @@
"noUncheckedIndexedAccess": true,
"allowImportingTsExtensions": false,
},
"include": ["src"],
"exclude": ["node_modules", "__tests__", "tests"]
}
"include": [
"src"
],
"exclude": [
"node_modules",
"src/**/*.test.ts",
"src/**/*.test.tsx"
]
}