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;
+  });
+
+});