1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Use test() instead of it() (#50151)

This commit is contained in:
Peter Bengtsson
2024-04-15 15:29:00 -04:00
committed by GitHub
parent ae6915b761
commit 4cf070e63a
25 changed files with 113 additions and 135 deletions

View File

@@ -33,11 +33,11 @@ describe('getChangelogItems module', () => {
afterAll(() => nock.cleanAll())
it('changelog contains 3 items', async () => {
test('changelog contains 3 items', async () => {
expect(changelog.length).toEqual(3)
})
it('each changelog item has expected title, date, and href', async () => {
test('each changelog item has expected title, date, and href', async () => {
const expectedChangelogValues = [
{
title: 'Authentication token format updates are generally available',