1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
Commit graph

280 commits

Author SHA1 Message Date
Eugen Cazacu
3761d41d32 http: add return types (denoland/deno_std#250)
Original: 84f9fe0649
2019-03-08 13:04:02 -05:00
Yoshiya Hinosawa
0434076ea6 refactor: use execPath where appropriate (denoland/deno_std#255)
Original: bf76484301
2019-03-08 12:41:47 -05:00
Ryan Dahl
b7a11b486d testing/asserts: Add unimplemented and unreachable (denoland/deno_std#248)
Original: 02274ef48b
2019-03-08 02:32:46 -05:00
Andy Hayden
4b96bfa8c7 Use fs.walk rather than git ls-files (denoland/deno_std#241)
Original: afaf343f37
2019-03-08 02:01:39 -05:00
Yoshiya Hinosawa
f90f62fa52 Use Deno global var instead of built-in "deno" module (denoland/deno_std#247)
Original: 395392912d
2019-03-07 19:25:16 -05:00
Vincent LE GOFF
fd74b38d36 Add assertNotEquals, assertArrayContains (denoland/deno_std#246)
Original: 899ab67cea
2019-03-07 09:08:19 -05:00
Yoshiya Hinosawa
31f684e71b Bump CI to v0.3.2 (denoland/deno_std#245)
replace Deno.platform with Deno.build
Original: c67751659c
2019-03-07 09:07:12 -05:00
Ryan Dahl
caa383a583 Rename assertEq to assertEquals (denoland/deno_std#242)
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: 4cf39d4a14
2019-03-06 19:42:24 -05:00
Vincent LE GOFF
e36edfdb3f Testing refactor (denoland/deno_std#240)
Original: e1d5c00279
2019-03-06 16:39:50 -05:00
Andy Hayden
d29957ad17 Replace deno.land/x/ with deno.land/std/ (denoland/deno_std#239)
Original: 0fc13fffbd
2019-03-06 10:24:53 -05:00
Evan Hahn
c6075f373e Update mime-db to 1.38.0 (denoland/deno_std#238)
mime-db@1.38.0 was released on 2019-02-04. This updates the JSON file.
Original: d430a24124
2019-03-05 22:00:39 -05:00
Vincent LE GOFF
787207f11b Refactor asserts in testing (denoland/deno_std#227)
Original: c734e32343
2019-03-05 14:58:28 -05:00
Vincent LE GOFF
39fde3a454 Use pretty assertEqual in testing (denoland/deno_std#234)
Original: 8fb9f709a6
2019-03-04 20:03:50 -05:00
Kitson Kelly
17663c1232 Add eslint for linting (denoland/deno_std#235)
Original: c0390ade3d
2019-03-04 19:53:35 -05:00
Dmitry Sharshakov
9f33cd2896 Refactor WebSockets (denoland/deno_std#173)
* Use assert.equal instead of deprecated assertEqual
* Replace let with const where possible
* Add WebSocketMessage type
* Use OpCode in WebSocketFrame
* Use const where possible in WS
* Separate sha1 tests, use const instead of let
Original: 385f866a54
2019-03-04 18:23:04 -05:00
chiefbiiko
ce7a987009 feat: parallel testing (denoland/deno_std#224)
Original: 41bdd096f0
2019-03-04 14:19:03 -05:00
Vincent LE GOFF
2bbde0c226 Refactoring + Enhance UTs + Enhance doc (denoland/deno_std#230)
Original: e2fd507cfd
2019-03-04 13:06:05 -05:00
Vincent LE GOFF
87d044ec24 Fixing default parameters of runBenchmarks (denoland/deno_std#229)
Original: facc8ce9d2
2019-03-04 11:02:49 -05:00
Vincent LE GOFF
e3a0c6f15f Re-enabling colors after color testing (denoland/deno_std#226)
Original: b4fba9fb24
2019-03-03 17:21:24 -05:00
Vincent LE GOFF
4f4601609f fixing readme link + version (denoland/deno_std#225)
Original: 0ba93a9b95
2019-03-02 15:49:39 -05:00
Vincent LE GOFF
428bf3c8a6 fs.walk performance improvement (denoland/deno_std#221)
Original: ccb452f775
2019-03-02 14:57:37 -05:00
Vincent LE GOFF
ef30a88542 Testing add ansi color support from color module (denoland/deno_std#223)
Original: 90871cfca6
2019-03-02 14:56:53 -05:00
Vincent LE GOFF
c131b8f3b6 Glob integration for the FS walker (denoland/deno_std#219)
Original: 0c3ba838fa
2019-03-02 14:56:19 -05:00
Ryan Dahl
2db147a001 Bump CI to v0.3.1 (denoland/deno_std#220)
Original: 93e5e0cd14
2019-03-01 02:54:21 -05:00
Bert Belder
2ba7de2d04 Change import { x } from "deno" to const { x } = Deno (denoland/deno_std#218)
Original: 6063378a92
2019-02-26 00:35:50 -05:00
Ryan Dahl
a7bf191353 Fix import in http_bench.ts (denoland/deno_std#217)
Original: d441a7dbf0
2019-02-24 13:53:13 -08:00
Andy Hayden
7484cf88b5 Clean up the test failure output (denoland/deno_std#209)
Original: e609f0c7cb
2019-02-23 11:24:57 -05:00
Bartek Iwańczuk
ad77215052 Add runIfMain method (denoland/deno_std#215)
Original: 817a0fb439
2019-02-23 11:18:43 -05:00
EnokMan
a4383984d1 Fixed non-standard prefix on importing (denoland/deno_std#216)
Original: f65fda8336
2019-02-23 11:13:53 -05:00
Ryan Dahl
d63a2e0224 Revert "Redesign of http server module (denoland/deno_std#188)"
We need to consider the API changes here more carefully.

This reverts commit da188a7d30.
and commit 8569f15207.

Original: 57c9176b19
2019-02-19 13:18:41 -05:00
Dmitry Sharshakov
a5a48ce84d Bump CI to v0.3 (denoland/deno_std#204)
Original: 37a6bca8d0
2019-02-19 09:58:40 -05:00
Bartek Iwańczuk
673bdd0352 Reenable cat.ts test (denoland/deno_std#197)
Original: 271f7cc76d
2019-02-18 18:32:56 -05:00
Yusuke Sakurai
bdeb6c43af fix: url match logic of http server (denoland/deno_std#199)
Original: da188a7d30
2019-02-18 18:32:31 -05:00
Andy Hayden
954fe83f62 Add fs.walk (denoland/deno_std#192)
Original: 3be908facd
2019-02-15 11:20:59 -05:00
bokuweb
0eed9b3029 feat: Add pretty assert (denoland/deno_std#187)
Original: ddafcc6572
2019-02-15 11:11:55 -05:00
Yusuke Sakurai
57f4e6a864 Redesign of http server module (denoland/deno_std#188)
Original: 8569f15207
2019-02-15 11:03:57 -05:00
Ryan Dahl
34ece9f2ed Pretty print exceptions (denoland/deno_std#190)
Explained here:
https://github.com/denoland/deno/issues/1559#issuecomment-462811554
Original: 34ca60376b
2019-02-12 18:24:29 -05:00
Ryan Dahl
0435b78e8b Style guide has moved. (denoland/deno_std#191)
Original: 19cccd2ebc
2019-02-12 18:23:49 -05:00
chiefbiiko
967389b5df Add benching (denoland/deno_std#185)
Original: 0a160c3925
2019-02-12 10:55:01 -05:00
Dmitry Sharshakov
53784dce7c Add colors to log module (denoland/deno_std#175)
Original: d895c60a51
2019-02-10 21:28:52 -05:00
Yusuke Sakurai
33f62789cd feat: multipart, etc.. (denoland/deno_std#180)
Original: fda9c98d05
2019-02-10 18:49:48 -05:00
Yusuke Sakurai
ed20bda6ec refactor: make acceptWebSocket independent from ServerRequest (denoland/deno_std#178)
Original: 88ddd5677d
2019-02-10 18:45:24 -05:00
Bartek Iwańczuk
52e047138a support NO_COLOR in colors module (denoland/deno_std#182)
Original: a81d2ae1f9
2019-02-09 19:13:44 -05:00
Ryan Dahl
fa3f8cf67b Bump CI to v0.2.11 (denoland/deno_std#183)
Original: 1abdc2efc0
2019-02-09 15:41:05 -05:00
Dmitry Sharshakov
a6e164441c Clean up tests (denoland/deno_std#176)
Original: f2d23f8fcd
2019-02-08 12:23:51 -05:00
Dmitry Sharshakov
f113312ef2 Add missiong copyright headers (denoland/deno_std#177)
Original: 5440377495
2019-02-07 11:45:47 -05:00
sh7dm
dc1cef498f Bump deno to v0.2.10
Original: d3de37d27a
2019-02-03 11:14:49 -05:00
Ryan Dahl
132650cdf3 Rename http/http.ts to http/server.ts (denoland/deno_std#170)
Remove http/mod.ts
Original: e79cb5a31a
2019-02-02 18:57:38 -05:00
Dmitry Sharshakov
b400dad9b7 Move WebSocket op codes to enum (denoland/deno_std#171)
Original: 56579ed6ad
2019-02-02 14:57:27 -05:00
Bartek Iwańczuk
0f87175220 Update log docs (denoland/deno_std#168)
Original: 214fb8d2c6
2019-02-02 09:41:54 -05:00