From 4207f3efc5b56d0acb30644856707481e684bad2 Mon Sep 17 00:00:00 2001 From: Nikolai Ovtsinnikov Date: Tue, 5 Sep 2023 15:03:13 +0300 Subject: [PATCH 1/3] added new file to test git repo setup --- test.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 00000000..44c67a81 --- /dev/null +++ b/test.txt @@ -0,0 +1,2 @@ +test file new for git + From eb323ce1dfe08d6a8a2dc0c868b735832ec01d24 Mon Sep 17 00:00:00 2001 From: Nikolai Ovtsinnikov Date: Thu, 14 Sep 2023 13:23:25 +0300 Subject: [PATCH 2/3] update Grunt mochaTest structure to run two separate test runs instead of one --- Gruntfile.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3407b28d..98616bad 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -10,12 +10,19 @@ module.exports = function (grunt) { }, mochaTest: { - all: { + imap: { options: { reporter: 'spec' }, - // run imap-core tests first - src: ['imap-core/test/**/*-test.js', 'test/**/*-test.js'] + // imap-core tests first + src: ['imap-core/test/**/*-test.js'] + }, + api: { + options: { + reporter: 'spec' + }, + // api tests + src: ['test/**/*-test.js'] } }, From 69b5aec1ac90a6f2e3dad088129c93cb6d9c69bc Mon Sep 17 00:00:00 2001 From: Nikolai Ovtsinnikov Date: Thu, 14 Sep 2023 13:24:06 +0300 Subject: [PATCH 3/3] remove test.txt --- test.txt | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 test.txt diff --git a/test.txt b/test.txt deleted file mode 100644 index 44c67a81..00000000 --- a/test.txt +++ /dev/null @@ -1,2 +0,0 @@ -test file new for git -