Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Add chromium and chromedriver to the list of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwebb76 committed Aug 1, 2023
1 parent 9d956c2 commit eda969c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
bundler = pkgs.bundler.override { inherit ruby; };
developmentInputs = with pkgs; [
bundler
chromedriver
chromium
libnotify
pkg-config
postgresql_12
Expand All @@ -36,4 +38,3 @@
};
});
}

2 changes: 1 addition & 1 deletion spec/requests/api/my_predictions_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
actor = json_hash['user']
expect(predictions.length).to eq 1
expect(predictions.first['description']).to eq another_prediction.description
expect(predictions.first['last_judgement_at'] > before_judgment_timestamp).to be true
expect(predictions.first['last_judgement_at'] >= before_judgment_timestamp).to be true
expect(actor['email']).to eq user.email

get url, params: params.merge(page_size: 1, page: 2)
Expand Down

0 comments on commit eda969c

Please sign in to comment.