강의

멘토링

커뮤니티

Inflearn Community Q&A

workstation199611109's profile image
workstation199611109

asked

TDD Development by Following [Updated in November 2023]

Create a Create Product function

올려둔 ES6 Express Jest Boilerplate Template 으로 개발 중이신 분들...

Written on

·

232

0

아래처럼 작성하시면 됩니다.

import * as productsController from '../../src/products/products.controller';

 

export const hello = "";

는 import { hello } from '경로'; 이렇게 임포트...


const hello = "";

export  default hello;

는 import hello from '경로'; 이렇게 임포트...

 

 

nodejstddmongodbsupertestexpressjestmongoose

Answer

This question is waiting for answers
Be the first to answer!
workstation199611109's profile image
workstation199611109

asked

Ask a question