Skip to content

Commit b54810f

Browse files
committed
chore: fix test names
1 parent 0f74334 commit b54810f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,7 @@ describe('Deploy scope', () => {
13841384
expect(mockStore.fulfilled).toBeTruthy()
13851385
})
13861386

1387-
test('Returns a named deploy-scoped store if `getDeployStore` receives an object with a `name` property', async () => {
1387+
test('Returns a named deploy-scoped store if `getDeployStore` receives a string parameter', async () => {
13881388
const mockToken = 'some-token'
13891389
const mockStoreName = 'my-store'
13901390
const mockStore = new MockFetch()
@@ -1421,7 +1421,7 @@ describe('Deploy scope', () => {
14211421
expect(mockStore.fulfilled).toBeTruthy()
14221422
})
14231423

1424-
test('Returns a named deploy-scoped store if `getDeployStore` receives a string parameter', async () => {
1424+
test('Returns a named deploy-scoped store if `getDeployStore` receives an object with a `name` property', async () => {
14251425
const mockToken = 'some-token'
14261426
const mockStoreName = 'my-store'
14271427
const mockStore = new MockFetch()

0 commit comments

Comments
 (0)