Move test files into data directory

This commit is contained in:
marcnjaramillo
2021-11-22 11:49:40 -08:00
parent 9d9f48bcf8
commit ad81127267
4 changed files with 1 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ chai.use(chaiAsPromised);
const expect = chai.expect;
describe.only('sarif parser', function() {
const sarifDir = path.join(__dirname, 'sarif');
const sarifDir = path.join(__dirname, 'data/sarif');
it('should parse a valid SARIF file', async () => {
const result = await sarifParser(path.join(sarifDir, 'validSarif.sarif'));
expect(result.version).to.exist;