Skip to content

Commit

Permalink
test renamed to it
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealOwenRees committed Jan 25, 2024
1 parent fe34f5b commit 5f9a2f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/bank-account/bank-account.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { BankAccount, ValueError } from './bank-account'

describe('Bank Account', () => {
test('newly opened account has zero balance', () => {
it('newly opened account has zero balance', () => {
const account = new BankAccount()
account.open()
expect(account.balance).toEqual(0)
Expand Down

0 comments on commit 5f9a2f0

Please sign in to comment.