From 0407b28fef2790454962461b6673f5683f70776b Mon Sep 17 00:00:00 2001 From: Jagoda11 Date: Fri, 31 May 2024 00:05:43 +0200 Subject: [PATCH] update tests --- test/index.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/index.test.js b/test/index.test.js index 5ef2d5b..eb6b0a2 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -22,7 +22,7 @@ describe('index.js', () => { nock.enableNetConnect(); }); - test('creates a comment when an issue is opened', async () => { + test('๐Ÿ“creates a comment when an issue is opened', async () => { // Mock GitHub API nock('https://api.github.com') .post('/repos/test/test/issues/1/comments') @@ -53,7 +53,7 @@ describe('index.js', () => { expect(nock.isDone()).toBe(true); }); - test('creates a comment when an issue is closed', async () => { + test('๐Ÿšช creates a comment when an issue is closed', async () => { // Mock GitHub API nock('https://api.github.com') .post('/repos/test/test/issues/1/comments') @@ -84,7 +84,7 @@ describe('index.js', () => { expect(nock.isDone()).toBe(true); }); - test('creates a comment when a pull request is opened', async () => { + test('๐Ÿ“ creates a comment when a pull request is opened', async () => { // Mock GitHub API nock('https://api.github.com') .post('/repos/test/test/issues/1/comments') @@ -115,7 +115,7 @@ describe('index.js', () => { expect(nock.isDone()).toBe(true); }); - test('responds to pull request closed', async () => { + test('๐Ÿšช responds to pull request closed', async () => { // Mock GitHub API nock('https://api.github.com') .post('/repos/test/test/issues/1/comments')