-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathkernel-host.test.js.snap
More file actions
66 lines (60 loc) · 1.23 KB
/
kernel-host.test.js.snap
File metadata and controls
66 lines (60 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`can load libraries from within a callback 1`] = `
Object {
"ok": Object {
"assembly": "@scope/jsii-calc-base",
"types": "*redacted*",
},
}
`;
exports[`can load libraries from within a callback 2`] = `
Object {
"ok": Object {
"assembly": "@scope/jsii-calc-lib",
"types": "*redacted*",
},
}
`;
exports[`can load libraries from within a callback 3`] = `
Object {
"ok": Object {
"$jsii.byref": "Object@10000",
"$jsii.interfaces": Array [
"@scope/jsii-calc-lib.IFriendly",
],
},
}
`;
exports[`can load libraries from within a callback 4`] = `
Object {
"callback": Object {
"cbid": "jsii::callback::20000",
"cookie": undefined,
"invoke": Object {
"args": Array [],
"method": "hello",
"objref": Object {
"$jsii.byref": "Object@10000",
"$jsii.interfaces": Array [
"@scope/jsii-calc-lib.IFriendly",
],
},
},
},
}
`;
exports[`can load libraries from within a callback 5`] = `
Object {
"ok": Object {
"assembly": "jsii-calc",
"types": "*redacted*",
},
}
`;
exports[`can load libraries from within a callback 6`] = `
Object {
"ok": Object {
"result": "SUCCESS!",
},
}
`;