summaryrefslogtreecommitdiff
path: root/testing
AgeCommit message (Collapse)Author
2019-08-21fix: add global test registry (denoland/deno_std#568)Bartek Iwańczuk
After adding deno test command a new problem appeared. If you try running deno test inside this repo test runner will find 80 test files but won't run any tests! This is caused by fact that deno test uses tagged version of standard library which causes test function available inside to repo to be different function that test available in standard lib used by deno test. Original: https://github.com/denoland/deno_std/commit/4531fa81597c346fd291c1d1a2063789369fb84d
2019-08-15add file:// prefix for imports in test runner (denoland/deno_std#564)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/15afc61356afe0bbf36c78cc3da8d9182d0e5b75
2019-08-14feat: test runner (denoland/deno_std#516)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/c44e5367bfd08d7a69adfa3434c00991509c4a67
2019-08-14feat: add overloaded form of unit test declaration (denoland/deno_std#563)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/bd146e0188dbd2c4a802e0af6e6b0705675c4abb
2019-08-14refactor 'assertEquals' (denoland/deno_std#560)Bartek Iwańczuk
* merge 'testing/pretty.ts' into 'testing/asserts.ts' * throw AssertionError in assertEquals * update misc tests use AssertionError Original: https://github.com/denoland/deno_std/commit/ff2d7f24dbc955650a11fc8db2f35c0aa38dcdb1
2019-07-28Make shebangs Linux compatible (denoland/deno_std#545)Nayeem Rahman
Original: https://github.com/denoland/deno_std/commit/5e77e8adc70f9fffc88a86e18608283b0e10848e
2019-06-24typoRong Sen Ng
Original: https://github.com/denoland/deno_std/commit/ba4210cdb92e7f3d3e9471bf055231221b8be085
2019-06-19Testing: Pretty output + Silent mode (denoland/deno_std#314)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/d44a47a08d53a5a5d94de8aabde6c1682b8e54c6
2019-06-18lint: add max line length rules (denoland/deno_std#507)Axetroy
Original: https://github.com/denoland/deno_std/commit/b04fda30c8949b6347094b898bfa427c0b9a6162
2019-06-06Remove console.error from asserts. (denoland/deno_std#483)Kitson Kelly
Original: https://github.com/denoland/deno_std/commit/2292fbe6b1935588e19bc2736b364e82b7c5d38e
2019-05-30chore: Implement strict mode (denoland/deno_std#453)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/be24677d15494e83eea2e99bfc5ccfdde31cb892
2019-05-10benching: use performance.now (denoland/deno_std#385)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/ad1b95eaf75d0e65367f3ad956a691e9348a2dc5
2019-04-24Eslint fixes (denoland/deno_std#356)Vincent LE GOFF
Make warnings fail Original: https://github.com/denoland/deno_std/commit/4543b563a9a01c8c168aafcbfd9d4634effba7fc
2019-04-22Support Sets in asserts.equals (denoland/deno_std#350)Dmitry Sharshakov
Original: https://github.com/denoland/deno_std/commit/9432d703291f74b230f39b30614d57a5623faa59
2019-04-14Fix eslint warnings and small clean ups (denoland/deno_std#339)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/95ab4e2a3c8ac5fd7a1175567848ba7c2161b9e3
2019-04-09Fix denoland/denodenoland/deno_std#2064 (denoland/deno_std#328)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/2c119627dc8fa96df9b45102e019115becb94558
2019-04-05fix usage code syntax error (denoland/deno_std#318)迷渡
Original: https://github.com/denoland/deno_std/commit/7f4dae109e792c8a78da801964243f1bfa053921
2019-03-30fix: benchmarks not returning on deno 0.3.4+ (denoland/deno_std#317)Arash Arbabi
Original: https://github.com/denoland/deno_std/commit/a1ceaa6ef7bd7d79d4f9accb2dbfd53482aa887a
2019-03-30Bump CI to v0.3.5 (denoland/deno_std#312)Ryan Dahl
Disable bench_test.ts because it hangs. Original: https://github.com/denoland/deno_std/commit/eb5b1d9f53b66f863cf1aae6e9f69b773af90cd5
2019-03-28Fix parallel testing (denoland/deno_std#309)Vincent LE GOFF
Fixes denoland/deno_std#308 Co-authored by @chiefbiiko Original: https://github.com/denoland/deno_std/commit/cac060f3882ba5df2e0e641350b33ef771c8ee44
2019-03-26testing: turn off exitOnFail by default (denoland/deno_std#307)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/d9e89531105b6ce989e5a860781536cbdc99235c
2019-03-26Fix assertEquals for RegExp & Date (denoland/deno_std#305)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/e17364b91fb5360624e9529ed26cb3c6f0ca6a38
2019-03-19fix: wrong usage of assertThrowsAsync which without await keyword ↵Axetroy
(denoland/deno_std#295) Original: https://github.com/denoland/deno_std/commit/59adafe86710038c6864fc0686f0292bf7fd9b1d
2019-03-18Documentation clean up (denoland/deno_std#288)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/b699fa67befaef4423f365e55eff0fec2e14def8
2019-03-12fix: eslint errors (denoland/deno_std#265)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/61af419bbc5717c2e2552050aacb20ef1b17480b
2019-03-11Move benching into testing. (denoland/deno_std#258)chiefbiiko
Original: https://github.com/denoland/deno_std/commit/4de86f04de8c83f8af184cb67b56f4022c17864f
2019-03-08Use AssertionError instead of Error in testing (denoland/deno_std#254)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/d4088a1920d005132bce2b0cd948ed74e0250563
2019-03-08testing/asserts: Add unimplemented and unreachable (denoland/deno_std#248)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/02274ef48bb298047f2a9a1821a75cd060fc5500
2019-03-07Add assertNotEquals, assertArrayContains (denoland/deno_std#246)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/899ab67cea12de812c041bcb5ea9ae7fd300d706
2019-03-06Rename assertEq to assertEquals (denoland/deno_std#242)Ryan Dahl
After some discussion it was found that assertEquals is more common in JS (vs assertEqual, assertEq) and sounds better in the negated form: assertNotEquals vs assertNE. Original: https://github.com/denoland/deno_std/commit/4cf39d4a1420b8153cd78d03d03ef843607ae506
2019-03-06Testing refactor (denoland/deno_std#240)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/e1d5c00279132aa639030c6c6d9b4e308bd4775e
2019-03-06Replace deno.land/x/ with deno.land/std/ (denoland/deno_std#239)Andy Hayden
Original: https://github.com/denoland/deno_std/commit/0fc13fffbdb59d6aee2b11ff17a5de382273126b
2019-03-05Refactor asserts in testing (denoland/deno_std#227)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/c734e3234322cea5298a887373fe4ad1591d7c97
2019-03-04Use pretty assertEqual in testing (denoland/deno_std#234)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/8fb9f709a67e92634b0be3024dfbc70fb445883c
2019-03-04Add eslint for linting (denoland/deno_std#235)Kitson Kelly
Original: https://github.com/denoland/deno_std/commit/c0390ade3de4d825423c9f0f5e1aa56ffd509942
2019-03-04feat: parallel testing (denoland/deno_std#224)chiefbiiko
Original: https://github.com/denoland/deno_std/commit/41bdd096f0b300056c58a04392d109bf11c1ce8e
2019-03-02Testing add ansi color support from color module (denoland/deno_std#223)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/90871cfca6f44a8cfea19345998359d615002b05
2019-03-01Bump CI to v0.3.1 (denoland/deno_std#220)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/93e5e0cd143d329f9f8d22fe8ea2b7387c251ff4
2019-02-23Clean up the test failure output (denoland/deno_std#209)Andy Hayden
Original: https://github.com/denoland/deno_std/commit/e609f0c7cb0e7f5eae11c4f1ab78c01470d04347
2019-02-23Add runIfMain method (denoland/deno_std#215)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/817a0fb439ff92cd67da8d4f1dae12a2a08121e1
2019-02-23Fixed non-standard prefix on importing (denoland/deno_std#216)EnokMan
Original: https://github.com/denoland/deno_std/commit/f65fda8336e72fe0cc19df2077eae5a00e64d337
2019-02-15feat: Add pretty assert (denoland/deno_std#187)bokuweb
Original: https://github.com/denoland/deno_std/commit/ddafcc6572b6574eb0566d650e5f9ca9f049a8d6
2019-02-12Pretty print exceptions (denoland/deno_std#190)Ryan Dahl
Explained here: https://github.com/denoland/deno/issues/1559#issuecomment-462811554 Original: https://github.com/denoland/deno_std/commit/34ca60376bb1ee8ba50bf150ecf77a05a393ef4b
2019-01-29runTests added to docs (denoland/deno_std#164)Rob Muhlestein
Original: https://github.com/denoland/deno_std/commit/5119cd3c591d2f6fd7ee920884ec795b01e4aca6
2019-01-26Port prettier (denoland/deno_std#156)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/b792fe8c7234287ce133e15d63cae5295256fd19
2019-01-26testing: add fail() (denoland/deno_std#123)James Garbutt
Original: https://github.com/denoland/deno_std/commit/c1c18c9469663ec54177d2b25f9778227b7dc813
2019-01-24testing: Don't automatically run on import (denoland/deno_std#129)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/ec1675a8cad2b9044ac8cf205920c0f230127133
2019-01-22Add assert.throwsAsync()Kitson Kelly
Original: https://github.com/denoland/deno_std/commit/83bb7e99b6ff00011d4ac63a265644f657282c06
2019-01-22Make testing more matainableKitson Kelly
Original: https://github.com/denoland/deno_std/commit/2f0ca2242f6db66acc5f8939e99615483b1d496c
2019-01-15Improve assert (denoland/deno_std#124)Kitson Kelly
Original: https://github.com/denoland/deno_std/commit/9a3eb207dcd1d032a3c3f7e60f8ee9c5e793f022