- Congratulations!
- Your Solid server is now ready to use.
-
- You can now visit its homepage.
-
- Warning: the root Pod is publicly accessible.
-
- Prevent public write and control access to the root
- by modifying its ACL document.
-
- Your Solid server needs a one-time setup - so it acts exactly the way you want. -
- - - - - diff --git a/test/integration/Setup.test.ts b/test/integration/Setup.test.ts deleted file mode 100644 index f8976e975..000000000 --- a/test/integration/Setup.test.ts +++ /dev/null @@ -1,128 +0,0 @@ -import fetch from 'cross-fetch'; -import type { App } from '../../src/init/App'; -import { joinUrl } from '../../src/util/PathUtil'; -import { getPort } from '../util/Util'; -import { getDefaultVariables, getTestConfigPath, instantiateFromConfig } from './Config'; - -const port = getPort('SetupMemory'); -const baseUrl = `http://localhost:${port}/`; - -// Some tests with real Requests/Responses until the mocking library has been removed from the tests -describe('A Solid server with setup', (): void => { - const email = 'test@test.email'; - const password = 'password!'; - const podName = 'test'; - const setupUrl = joinUrl(baseUrl, '/setup'); - let app: App; - - // `beforeEach` since the server needs to restart to reset setup - beforeEach(async(): Promise