You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// currently this is using a real request ID, since the routes are generated dynamically, so far i haven't found a way to generate a route for a fake request within the test
3
+
describe.skip('Viewing one request',()=>{
4
+
// TODO: currently this uses a real request uuid, which would allow it to visit a route that actually existed.
5
+
// since the routes are generated dynamically, we will need to mock the next router in order to generate a route for a fake request w/ mock uuid within the test
6
+
// this test should remain skipped until the above is done since it runs as a regular e2e vs e2e with mocked data
5
7
letuuid=useOneRequestResponseBody.uuid
6
8
7
9
describe('as a logged out user',()=>{
@@ -87,58 +89,26 @@ describe('Viewing one request', () => {
87
89
describe('request page components are loading successfully, &',()=>{
// it("should show a message notifying the user they don't have any requests.", () => {
114
-
// cy.get('p.no-requests').contains('You do not have any requests yet.').then(() => {
115
-
// cy.log('Successfully viewing request page with no requests.')
116
-
// })
117
-
// })
118
-
// })
119
-
120
-
// context('the user can see the <LinkedButton /> component', () => {
121
-
// [true, false].forEach((value) => {
122
-
// before(() => {
123
-
// requestList = value
124
-
// })
125
-
// it(`should show a button that links to the initialize request page for the default ware ${value ? 'with a request list' : 'with 0 requests'}.`, () => {
0 commit comments