From 775915e17dc6001bb3f2c429d96133f9e52ab724 Mon Sep 17 00:00:00 2001 From: Andrea Gasparini Date: Tue, 17 Dec 2024 19:40:23 +0100 Subject: [PATCH 1/4] Create prova.test.js --- tests/prova.test.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/prova.test.js diff --git a/tests/prova.test.js b/tests/prova.test.js new file mode 100644 index 0000000..7dc8dd2 --- /dev/null +++ b/tests/prova.test.js @@ -0,0 +1,3 @@ +describe('with some foo', () => { + it('should do some bar', () => {}); +}); From 17f786a08b1e417dec88e0c653fd4c946285c54b Mon Sep 17 00:00:00 2001 From: Andrea Gasparini Date: Tue, 17 Dec 2024 20:12:08 +0100 Subject: [PATCH 2/4] Added a comment --- tests/prova.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/prova.test.js b/tests/prova.test.js index 7dc8dd2..3b8db25 100644 --- a/tests/prova.test.js +++ b/tests/prova.test.js @@ -1,3 +1,5 @@ describe('with some foo', () => { it('should do some bar', () => {}); }); + +// a comment From 14fe92662dc290ead02a3e99a2a5438a46d7d287 Mon Sep 17 00:00:00 2001 From: Andrea Gasparini Date: Tue, 17 Dec 2024 20:25:43 +0100 Subject: [PATCH 3/4] Added another comment --- tests/prova.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/prova.test.js b/tests/prova.test.js index 3b8db25..3a9bc30 100644 --- a/tests/prova.test.js +++ b/tests/prova.test.js @@ -3,3 +3,4 @@ describe('with some foo', () => { }); // a comment +// another comment From baabe29aa8af3861bddb88f03e5a659e9220b6b9 Mon Sep 17 00:00:00 2001 From: Andrea Gasparini Date: Tue, 17 Dec 2024 22:41:09 +0100 Subject: [PATCH 4/4] test: add new it test --- tests/prova.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/prova.test.js b/tests/prova.test.js index 3a9bc30..e17d3d9 100644 --- a/tests/prova.test.js +++ b/tests/prova.test.js @@ -1,5 +1,6 @@ describe('with some foo', () => { it('should do some bar', () => {}); + it('should do another different bar', () => {}); }); // a comment