UNPKG
mojio-js-sdk
Version:
latest (4.0.4)
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
Mojio javascript REST client.
github.com/mojio/mojio-js
mojio/mojio-js
mojio-js-sdk
/
unittests
/
errata
/
combyne_test.coffee
13 lines
(10 loc)
•
296 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
describe
'Test Combyne Inversion.'
, -> it
'return field changes'
, -> test = (r) -> r.
a
=
1
return
r x = {
a
:
2
}
console
.
log
(
JSON
.
stringify
(x)) y =
test
(x)
console
.
log
(
JSON
.
stringify
(x))
console
.
log
(
JSON
.
stringify
(y))