forked from TypeStrong/ts-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypescript-node.spec.ts
More file actions
114 lines (88 loc) · 3.32 KB
/
typescript-node.spec.ts
File metadata and controls
114 lines (88 loc) · 3.32 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import { expect } from 'chai'
import { exec } from 'child_process'
import { join } from 'path'
import proxyquire = require('proxyquire')
import { register, VERSION } from './typescript-node'
register()
const BIN_PATH = join(__dirname, '../dist/bin/ts-node')
describe('ts-node', function () {
this.timeout(5000)
it('should export the correct version', function () {
expect(VERSION).to.equal(require('../package.json').version)
})
it('should execute cli', function (done) {
exec(`node ${BIN_PATH} tests/hello-world`, function (err, stdout) {
expect(err).to.not.exist
expect(stdout).to.equal('Hello, world!\n')
return done()
})
})
it('should print scripts', function (done) {
exec(`node ${BIN_PATH} -p "import { example } from './tests/complex/index';example()"`, function (err, stdout) {
expect(err).to.not.exist
expect(stdout).to.equal('example\n')
return done()
})
})
it('should eval code', function (done) {
exec(`node ${BIN_PATH} -e "import * as m from './tests/module';console.log(m.example('test'))"`, function (err, stdout) {
expect(err).to.not.exist
expect(stdout).to.equal('TEST\n')
return done()
})
})
it('should throw errors', function (done) {
exec(`node ${BIN_PATH} -e "import * as m from './tests/module';console.log(m.example(123))"`, function (err) {
expect(err.message).to.contain('[eval].ts (1,59): Argument of type \'number\' is not assignable to parameter of type \'string\'. (2345)')
return done()
})
})
it('should be able to ignore errors', function (done) {
exec(`node ${BIN_PATH} --ignoreWarnings 2345 -e "import * as m from './tests/module';console.log(m.example(123))"`, function (err) {
expect(err.message).to.match(/TypeError: (?:(?:undefined|foo\.toUpperCase) is not a function|.*has no method \'toUpperCase\')/)
return done()
})
})
it('should work with source maps', function (done) {
exec(`node ${BIN_PATH} tests/throw`, function (err) {
expect(err.message).to.contain([
`${join(__dirname, '../tests/throw.ts')}:3`,
' bar () { throw new Error(\'this is a demo\') }',
' ^',
'Error: this is a demo'
].join('\n'))
return done()
})
})
it('eval should work with source maps', function (done) {
exec(`node ${BIN_PATH} -p "import './tests/throw'"`, function (err) {
expect(err.message).to.contain([
`${join(__dirname, '../tests/throw.ts')}:3`,
' bar () { throw new Error(\'this is a demo\') }',
' ^',
'Error: this is a demo'
].join('\n'))
return done()
})
})
it('should be able to require typescript', function () {
const m = require('../tests/module')
expect(m.example('foo')).to.equal('FOO')
})
it('should compile through js and ts', function () {
const m = require('../tests/complex')
expect(m.example()).to.equal('example')
})
it('should work with proxyquire', function () {
const m = proxyquire('../tests/complex', {
'./example': 'hello'
})
expect(m.example()).to.equal('hello')
})
it('should ignore all warnings', function (done) {
exec(`node ${BIN_PATH} -a -p "x"`, function (err) {
expect(err.message).to.contain('ReferenceError: x is not defined')
return done()
})
})
})