Skip to content

Commit 3ecf753

Browse files
committed
assert changes
1 parent 95e67f3 commit 3ecf753

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

asserts-test.jspy

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
assert('test1')
2+
.equal(4, 4)
3+
4+
assert('test2', {x: 1})
5+
.equal(1, d=>d.x)
6+
7+
print('This is print message', 2, dateTime(), {x:3,y:7}, [1,3,4])
8+
9+
assert('test3')
10+
.equal(4, 5)
11+
# showAsserts()
12+
13+
return null

test.jspy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ x
1111
.filter(r => r * r)
1212
.join(",")
1313

14+
getExecutionContext()

0 commit comments

Comments
 (0)