Skip to content

Commit

Permalink
restructuring files
Browse files Browse the repository at this point in the history
  • Loading branch information
apitlekays committed Apr 19, 2020
1 parent 9aa856d commit f0fd3bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __test__/index.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const xxx = require('../src/index');
const xxx = require('../index');

describe('SLM', () => {
test('getStateById', ()=> {
Expand Down
6 changes: 3 additions & 3 deletions src/index.js → index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const stateList = require('./state.json');
const districtList = require('./district.json');
const schoolList = require('./school.json');
const stateList = require('./src/state.json');
const districtList = require('./src/district.json');
const schoolList = require('./src/school.json');

module.exports = {
getStateById: function (id){
Expand Down

0 comments on commit f0fd3bb

Please sign in to comment.