Real unit test (isolation, no children render)
Calls:
- constructor
- render
| # To enable ANSI sequences in a PowerShell console run the following commands. | |
| # After that you can use wttr.in in you PowerShell just lake that: | |
| # (curl http://wttr.in/ -UserAgent "curl" ).Content | |
| # | |
| # More on it: | |
| # http://stknohg.hatenablog.jp/entry/2016/02/22/195644 (jp) | |
| # | |
| Add-Type -MemberDefinition @" | |
| [DllImport("kernel32.dll", SetLastError=true)] |
| import fs from 'fs'; | |
| import path from 'path'; | |
| const convert = (imgPath) => { | |
| // read image file | |
| fs.readFile(imgPath, (err, data)=>{ | |
| // error handle | |
| if(err) { | |
| throw err; | |
| } |