Skip to content

Commit 81dc3e5

Browse files
committed
fixed test env
1 parent 4349437 commit 81dc3e5

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

Dockerfile.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ruby:3.0-alpine3.12
1+
FROM ruby:2.7.2-alpine3.12
22

33
RUN gem install bundler:2.1.4
44

55
RUN apk update --no-cache && \
6-
apk add build-base postgresql-dev git nodejs yarn tzdata bash sqlite-dev && \
6+
apk add build-base postgresql-dev git nodejs yarn tzdata bash sqlite-dev npm && \
77
mkdir -p /app
88

99
WORKDIR /app

spec/dummy/app/matestack/app.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# used within specs only
2+
class App < Matestack::Ui::App
3+
4+
def response
5+
yield
6+
end
7+
8+
end

0 commit comments

Comments
 (0)