summaryrefslogtreecommitdiff
path: root/testing
AgeCommit message (Collapse)Author
2019-10-05Update eslint and @typescript-eslint (denoland/deno_std#621)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/c3fe858f98565edbe8faeb3cf2e5b873304f4f6e
2019-10-02Implement expandGlob() and expandGlobSync() (denoland/deno_std#617)Nayeem Rahman
fs/glob.ts: - Improve prototypes for expandGlob() and expandGlobSync() from denoland/deno_std#604. - Rename glob() to globToRegExp(). - Add normalizeGlob() and joinGlobs(). - Extract GlobToRegExpOptions from GlobOptions, remove the strict and filepath options. fs/globrex.ts: - Add GlobrexOptions. fs/path/constants.ts: - Add SEP_PATTERN. fs/walk.ts: - Add WalkOptions::includeFiles - Default WalkOptions::includeDirs to true. - Don't traverse directories matching a skip pattern. - Remove walkSync()'s default root value. prettier: - Refactor to use expandGlob(). testing: - Make findTestModules() an async generator. Original: https://github.com/denoland/deno_std/commit/8c90bd9d0b1c78b023d36462ffaa9446ef22490c
2019-09-28Test runner v2 (denoland/deno_std#604)Nayeem Rahman
Original: https://github.com/denoland/deno_std/commit/17a214bbd5b3a058a8126e9f7210992b1b52ba11
2019-09-21Remove //testing/main.ts (denoland/deno_std#605)Nayeem Rahman
Original: https://github.com/denoland/deno_std/commit/e3a33a79e6b09f47450a3bd25c5205fa6e1b641a
2019-09-11bump prettier to 1.18.2 (denoland/deno_std#592)Axetroy
Original: https://github.com/denoland/deno_std/commit/06958a4ada960665a48ac34f919423e0d8d16951
2019-09-08reenable test getMatchingUrlsLocal (denoland/deno_std#589)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/cfb0eb55ab83767532b818db4cabab03d157d18e
2019-09-04bump ci to v0.17.0 (denoland/deno_std#585)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/539338db330e630d006f0898921635c4e10ae671
2019-08-30fix: better paths handling in test runner (denoland/deno_std#574)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/5ef42ece7dfc314dbc5f4ecd30bdecdec4ee4336
2019-08-24Move colors to fmt (denoland/deno_std#571)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a
2019-08-22print out the failed tests after the summary (denoland/deno_std#554)Eugen Cazacu
Original: https://github.com/denoland/deno_std/commit/ed1b9e0563e0f22eb6415b248d6218e75e500783
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