Skip to content

Commit

Permalink
README update & removing tests that GitHub Actions can't run
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrydn committed Nov 7, 2021
1 parent 11f33e9 commit 4e43c93
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ Variable | Command | Example
`GIT_IS_DIRTY` | `git diff --stat` | `false`
`GIT_REPOSITORY` | `git rev-parse --show-toplevel` | `git-variables`

## Notes
## Notes

Any questions or suggestions please [open an issue](/someimportantcompany/git-variables/issues).
10 changes: 0 additions & 10 deletions git.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,6 @@ describe('git-variables', () => {
assert(typeof GIT_MESSAGE_SUBJECT === 'string', 'Expected GIT_MESSAGE_SUBJECT to be a string');
});

it('should have a GIT_USER variable', () => {
const { GIT_USER } = git;
assert(typeof GIT_USER === 'string', 'Expected GIT_USER to be a string');
});

it('should have a GIT_EMAIL variable', () => {
const { GIT_EMAIL } = git;
assert(typeof GIT_EMAIL === 'string', 'Expected GIT_EMAIL to be a string');
});

it('should have a GIT_IS_DIRTY variable', () => {
const { GIT_IS_DIRTY } = git;
assert(typeof GIT_IS_DIRTY === 'string', 'Expected GIT_IS_DIRTY to be a string');
Expand Down

0 comments on commit 4e43c93

Please sign in to comment.