From 683c4a70818baf9b4de0a940446191d2272532bb Mon Sep 17 00:00:00 2001 From: Rishabh Arya Date: Thu, 3 Mar 2022 15:01:14 +0530 Subject: [PATCH 1/4] Create .mocharc.yml --- .mocharc.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .mocharc.yml diff --git a/.mocharc.yml b/.mocharc.yml new file mode 100644 index 00000000..79575735 --- /dev/null +++ b/.mocharc.yml @@ -0,0 +1 @@ +require: 'test/support/env' From 3da1fa4cf972ff3211d67e1f51f60ec87a679c19 Mon Sep 17 00:00:00 2001 From: Rishabh Arya Date: Thu, 3 Mar 2022 15:05:06 +0530 Subject: [PATCH 2/4] Create .tas.yml --- .tas.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .tas.yml diff --git a/.tas.yml b/.tas.yml new file mode 100644 index 00000000..4426f76b --- /dev/null +++ b/.tas.yml @@ -0,0 +1,15 @@ +--- +framework: mocha +preRun: + command: + - npm install +preMerge: + pattern: + - "./test/*.js" +postMerge: + pattern: + - "./test/*.js" +postRun: + command: + - node --version +version: 1.0 From 7e6dcb3f6138e3487336200896b5d914722db319 Mon Sep 17 00:00:00 2001 From: Rishabh Arya Date: Thu, 3 Mar 2022 15:32:57 +0530 Subject: [PATCH 3/4] Update session.js --- test/session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/session.js b/test/session.js index 425ed2bc..2702ac92 100644 --- a/test/session.js +++ b/test/session.js @@ -1975,7 +1975,7 @@ describe('session()', function(){ }) }) - describe('.secure', function(){ + describe.only('.secure', function(){ var app before(function () { From 1692f3e89990ead2ba1fd2c0a2d7eb23151ab6b0 Mon Sep 17 00:00:00 2001 From: Rishabh Arya Date: Thu, 3 Mar 2022 15:41:26 +0530 Subject: [PATCH 4/4] Update .tas.yml --- .tas.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.tas.yml b/.tas.yml index 4426f76b..20f1c128 100644 --- a/.tas.yml +++ b/.tas.yml @@ -1,5 +1,6 @@ --- framework: mocha +nodeVersion: 14.17.2 preRun: command: - npm install