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