metric-imperial-converter/routes/api.js
Nicholas Carrigan (he/him) 7fab5e7fd0
Remove tests from boilerplate (#14)
* Remove tests from boilerplate

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

* fix: Comment out NODE_ENV

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>
2021-03-12 09:39:21 -07:00

11 lines
209 B
JavaScript

'use strict';
const expect = require('chai').expect;
const ConvertHandler = require('../controllers/convertHandler.js');
module.exports = function (app) {
let convertHandler = new ConvertHandler();
};