(fileName, ...args)
| 37 | } |
| 38 | |
| 39 | function validateFile(fileName, ...args) { |
| 40 | const fileNamePath = path.join(__dirname, "assets/" + fileName); |
| 41 | validate(fs.readFileSync(fileNamePath).toString(), ...args); |
| 42 | } |
| 43 | |
| 44 | describe("XML Validator", function () { |
| 45 | it("should validate simple xml string", function () { |
no test coverage detected
searching dependent graphs…