Steven Fukase 4 년 전
부모
커밋
7aea4cadcc
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. 12 0
      packages/slack/src/utils/reshape-contents-body.test.ts

+ 12 - 0
packages/slack/src/utils/reshape-contents-body.test.ts

@@ -0,0 +1,12 @@
+import { reshapeContentsBody } from './reshape-contents-body';
+
+describe('reshapeContentsBody', () => {
+
+  test('Create formatted text for GROWI', () => {
+    const text = 'Random text';
+    expect(() => {
+      reshapeContentsBody(text);
+    }).to;
+  });
+
+});