forked from systemjs/plugin-css
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
78 lines (75 loc) · 1022 Bytes
/
test.js
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
67
68
69
70
71
72
73
74
75
76
77
78
/* global it, before */
import test from 'ava'
test('loads test.dat', function(t) {
return System.import('./test.dat!raw').then(function (data) {
t.same(new Uint8Array(data), new Uint8Array([
114,
110,
97,
100,
111,
109,
32,
100,
97,
116,
97,
10,
105,
110,
99,
108,
117,
100,
101,
115,
32,
110,
111,
116,
32,
85,
84,
70,
45,
56,
32,
99,
104,
97,
114,
97,
99,
116,
101,
114,
115,
10,
226,
152,
128,
10,
226,
153,
142,
226,
157,
164,
226,
152,
130,
226,
152,
173,
226,
152,
142,
10
]))
})
})
test('loads large.dat', function(t) {
return System.import('./large.dat!raw').then(function (data) {
t.same(typeof data, 'object')
})
})