UNPKG

@testcomplete/filesystemutil

Version:

A file system interface to let scripts working with TestComplete & NodeJS at the same time

9 lines (6 loc) 271 B
// Check for NodeJS. If NodeJS, require need relative path let sPrePath = typeof process !== 'undefined' ? './' : ''; let fs = require(`${sPrePath}FileSystemUtil`); function TestWriteNullContent () { fs().write('./Files/FileTest_NullContent.txt', null); }