From eba697bf8974b01d5e9e4cf8530beb6929ea354d Mon Sep 17 00:00:00 2001 From: saw-jan Date: Mon, 30 Aug 2021 15:42:56 +0545 Subject: [PATCH] add todo unit tests for PrivateLink view --- .../tests/unit/views/PrivateLink.spec.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 packages/web-app-files/tests/unit/views/PrivateLink.spec.js diff --git a/packages/web-app-files/tests/unit/views/PrivateLink.spec.js b/packages/web-app-files/tests/unit/views/PrivateLink.spec.js new file mode 100644 index 00000000000..594ff62418f --- /dev/null +++ b/packages/web-app-files/tests/unit/views/PrivateLink.spec.js @@ -0,0 +1,16 @@ +describe('PrivateLink view', () => { + describe('when the page has loaded successfully', () => { + it.todo('should have the background image set') + it.todo('should display the page title') + it.todo('should display the logo') + it.todo('should resolve the provided file id to a path') + }) + + describe('when the page is still loading', () => { + it.todo('should display the loading text with the spinner') + }) + + describe('when there was an error', () => { + it.todo('should display the error message') + }) +})