mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
Deliberately introduce failing test to verify automatic deploy
This commit is contained in:
parent
7a3fe86e6f
commit
e60e8324f1
2 changed files with 7 additions and 1 deletions
2
.github/workflows/build-and-test.yml
vendored
2
.github/workflows/build-and-test.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: Ruby
|
name: Build and Test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,12 @@ require 'rails_helper'
|
||||||
|
|
||||||
RSpec.describe Attempt, type: :model do
|
RSpec.describe Attempt, type: :model do
|
||||||
|
|
||||||
|
describe 'a failing test' do
|
||||||
|
it 'fails' do
|
||||||
|
expect(true).to be_falsey
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
let!(:school) { School.create!(name: 'School') }
|
let!(:school) { School.create!(name: 'School') }
|
||||||
|
|
||||||
let!(:recipient) { school.recipients.create(name: 'name', phone: "#{1}" * 9) }
|
let!(:recipient) { school.recipients.create(name: 'name', phone: "#{1}" * 9) }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue