diff --git a/tests/tests.js b/tests/tests.js index 941f492..f47a02d 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -5,12 +5,12 @@ const chai = require('chai'); const chaiAsPromised = require('chai-as-promised'); const Conf = require('conf'); -const schema = require('../schema'); +const schema = require('../src/schema'); const config = new Conf({ projectName: 'weather-cli', schema }); -const weather = require('../index.js'); +const weather = require('../src/index.js'); chai.use(chaiAsPromised); chai.should();