Steven Fukase 4 ani în urmă
părinte
comite
7aea4cadcc
1 a modificat fișierele cu 12 adăugiri și 0 ștergeri
  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;
+  });
+
+});