commit | 540479612908fc36b345853bc04dbc4176d517ce | [log] [tgz] |
---|---|---|
author | Philipp Schrader <philipp.schrader@gmail.com> | Wed Feb 16 21:05:11 2022 -0800 |
committer | Philipp Schrader <philipp.schrader@gmail.com> | Wed Feb 16 21:05:16 2022 -0800 |
tree | f2758acd12ce5b214a67094ac9c8c4e73a8c7f8f | |
parent | 5524a50d593f865fa6426f4ffb9562fbf82fb200 [diff] [blame] |
Add basic webtesting example. Also switch the angular example to use ts_library instead of ts_project. Change-Id: Ib94c7010bd2af4036d1a04efaf95bbab43cb9ef0 Signed-off-by: Alex Perry <alex.perry96@gmail.com>
diff --git a/build_tests/basic.ts b/build_tests/basic.ts new file mode 100644 index 0000000..6ddac49 --- /dev/null +++ b/build_tests/basic.ts
@@ -0,0 +1,6 @@ +/** + * Computes the sum of the input values + */ +export function add(x: number, y: number): number { + return x + y; +}