Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .layerfiles/base/Layerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,11 @@ RUN pwd
COPY / /root

RUN docker build -t image .

RUN docker run -d -p 8080:8080 image

EXPOSE WEBSITE http://localhost:8080

RUN curl http://localhost:8080

RUN docker run -it --add-host host.docker.internal:host-gateway -v $PWD:/e2e -w /e2e cypress/included:3.2.0
5 changes: 0 additions & 5 deletions .layerfiles/cypress/Layerfile

This file was deleted.

6 changes: 6 additions & 0 deletions cypress/integration/home_page_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ describe('Visit Home Page', () => {
expect(true).to.equal(true)
})

it('Loads modal', () => {
cy.visit('/')

expect(true).to.equal(true)
})

it('Has working links', () => {
cy.visit('/')

Expand Down