Files
Nim/tests/js/tunittest_error2.nim
Timothee Cour fff5819ee7 fix #16978 unittest js foreign exception (#16998)
* fix #16978 unittest js foreign exception
2021-02-13 09:51:46 +01:00

17 lines
297 B
Nim

discard """
exitcode: 1
outputsub: '''
Unhandled exception: Cannot read property 'charCodeAt' of null [<foreign exception>]
[FAILED] Bad test
'''
matrix: "-d:nodejs"
targets: "js"
joinable: false
"""
# bug #16978
import unittest
test "Bad test":
var x: cstring = nil
let y = x[0]