We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/givery-technology/track-db-test-library/blob/main/doc/DEVELOPPING_SQL_CHALLENGES_ja.md
ge
gt
track-db-test-library/doc/DEVELOPPING_SQL_CHALLENGES_ja.md
Lines 299 to 307 in 765a31c
le
lt
Line 294 in 765a31c
table: "'sports'"
timeout: 6000
The text was updated successfully, but these errors were encountered:
clientも指定できるらしいです。デフォルトはsqliteになるそうです。これもドキュメントになかったの追記したいです。 test.public.ymlなどのイメージ
preparations: init_db: &init_db ... client: postgres # ここを追加 testcases: ...
track-db-test-library/lib/runner.js
Line 158 in 765a31c
track-db-test-library/lib/connection.js
Lines 188 to 196 in 765a31c
Sorry, something went wrong.
No branches or pull requests
https://github.com/givery-technology/track-db-test-library/blob/main/doc/DEVELOPPING_SQL_CHALLENGES_ja.md
ge
とgt
の説明が逆track-db-test-library/doc/DEVELOPPING_SQL_CHALLENGES_ja.md
Lines 299 to 307 in 765a31c
check-index-totalの
ge
とgt
の説明がおそらく逆です。le
とlt
も逆です。check-index-columnも同様です。
track-db-test-library/doc/DEVELOPPING_SQL_CHALLENGES_ja.md
Line 294 in 765a31c
check-index-tableは
table: "'sports'"
のようにダブルクォーテーションとシングルクォーテーションで囲まなくてはいけません。この仕様について補足した方がわかりやすいです。使用箇所
https://github.com/givery-technology/track-contents-development/blob/c3ffe5bf46eca50c954646aa089c1ce499002e59/sql-design-sport/test_ja/test.secret.yml#L209-L210
timeoutも設定することができるので、追加した方がよさそうです。
仕様
mochaデフォルトタイム(2000ms) + 設定値がtimeoutのlimitになります。
timeout: 6000
を設定すると実際には、8秒を超えるテストが失敗になります。設定値は負の値を設定することでデフォルトより短い時間のタイムアウトを設定できます。
timeout: -500 で1.5秒のタイムアウトになります。
使用箇所
https://github.com/givery-technology/track-contents-development/blob/c3ffe5bf46eca50c954646aa089c1ce499002e59/sql-game-gacha/sql-game-unit-gacha-hard1/test_ja/test.public.yml#L26
The text was updated successfully, but these errors were encountered: