diff options
author | Vitaly Takmazov | 2018-06-20 22:46:37 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | c3e791ae2357bbe220c133e3ab417bd5f7c55410 (patch) | |
tree | 2061468a182b85ec94f0c33008b47ea780900a12 /vnext/src/components/__tests__/__snapshots__ | |
parent | 64a73c43afded0c5bb30ea15ce11adc15b5b2ef5 (diff) |
initial unit testing setup
Diffstat (limited to 'vnext/src/components/__tests__/__snapshots__')
-rw-r--r-- | vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap b/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap new file mode 100644 index 00000000..175befa0 --- /dev/null +++ b/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap @@ -0,0 +1,17 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Avatar renders correctly 1`] = ` +<div + className="msg-avatar" +> + <a + href="/ugnich/" + onClick={[Function]} + > + <img + alt="ugnich" + src="//i.juick.com/a/1.png" + /> + </a> +</div> +`; |