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..5c54282d445 --- /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 call "getPathForFileId" method') + }) + + describe('when "loading" is set as true', () => { + it.todo('should display the loading text with the spinner') + }) + + describe('when there is error', () => { + it.todo('should display the error message') + }) +})