diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-11 16:55:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 16:55:22 -0400 |
commit | c814d5a9140d88bf1633b74742e64436e1c75667 (patch) | |
tree | 71bd96c9f4cd566b5ae231990a8a4a7e7feff8c4 /website/app_test.js | |
parent | 51f9331ecb50afeafd0fa2ca8336e75aa374465e (diff) |
Add throughput benchmark (#961)
Diffstat (limited to 'website/app_test.js')
-rw-r--r-- | website/app_test.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/website/app_test.js b/website/app_test.js index 029f659f3..42891bf6b 100644 --- a/website/app_test.js +++ b/website/app_test.js @@ -22,6 +22,12 @@ const regularData = [ "main.js.map": 80000000, "snapshot_deno.bin": 70000000 }, + throughput: { + "100M_tcp": 3.6, + "100M_cat": 3.0, + "10M_tcp": 1.6, + "10M_cat": 1.0 + }, benchmark: { hello: { mean: 0.05 @@ -54,6 +60,12 @@ const regularData = [ "main.js.map": 80000001, "snapshot_deno.bin": 70000001 }, + throughput: { + "100M_tcp": 3.6, + "100M_cat": 3.0, + "10M_tcp": 1.6, + "10M_cat": 1.0 + }, benchmark: { hello: { mean: 0.055 @@ -84,6 +96,7 @@ const irregularData = [ created_at: "2018-01-01T01:00:00Z", sha1: "123", benchmark: {}, + throughput: {}, binary_size: {}, thread_count: {}, syscall_count: {} @@ -97,6 +110,9 @@ const irregularData = [ cold_hello: {}, cold_relative_import: {} }, + throughput: { + "100M_tcp": 3.0 + }, binary_size: { deno: 1 }, |