Steven Fukase il y a 4 ans
Parent
commit
7aea4cadcc
1 fichiers modifiés avec 12 ajouts et 0 suppressions
  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;
+  });
+
+});