()
| 102 | // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 103 | |
| 104 | function runTests() { |
| 105 | describe('Test if all the expected files, and only them, are present in the build directories', () => { |
| 106 | describe(dirs.archive, () => { |
| 107 | checkFiles(dirs.archive, expectedFilesInArchiveDir); |
| 108 | }); |
| 109 | |
| 110 | describe(dirs.dist, () => { |
| 111 | checkFiles(dirs.dist, expectedFilesInDistDir); |
| 112 | }); |
| 113 | }); |
| 114 | } |
| 115 | |
| 116 | runTests(); |
no test coverage detected