0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Moved modules into lib folder

no issue

- This fixes a problem where files are skiped form the @tryghost/members-csv package
- Also this follows the file structure convention with other packages
This commit is contained in:
Nazar Gargol 2020-06-19 19:49:39 +12:00
parent 53993358ae
commit 93ab8ae946
3 changed files with 1 additions and 1 deletions

View file

@ -1,6 +1,6 @@
const should = require('should');
const path = require('path');
const {readCSV} = require('../parse');
const {readCSV} = require('../lib/parse');
const csvPath = path.join(__dirname, '/fixtures/');
describe('read csv', function () {