diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a4225a311c..ec359d570e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -24,9 +24,9 @@ jobs: npm install -g grunt-cli node-qunit-puppeteer npm install --prefix build grunt --gruntfile build/Gruntfile.js develop - node-qunit-puppeteer cell/.unit-tests/FormulaTests.html - node-qunit-puppeteer cell/.unit-tests/subdir/PivotTests.html - node-qunit-puppeteer cell/.unit-tests/CopyPasteTests.html + node-qunit-puppeteer tests/cell/spreadsheet-calculation/FormulaTests.html + node-qunit-puppeteer tests/cell/spreadsheet-calculation/PivotTests.html + node-qunit-puppeteer tests/cell/spreadsheet-calculation/CopyPasteTests.html node-qunit-puppeteer tests/word/document-calculation/paragraph.html builder-tests: runs-on: ubuntu-latest diff --git a/cell/.unit-tests/CellFormatTests.js b/tests/cell/spreadsheet-calculation/CellFormatTests.js similarity index 100% rename from cell/.unit-tests/CellFormatTests.js rename to tests/cell/spreadsheet-calculation/CellFormatTests.js diff --git a/cell/.unit-tests/CopyPasteTests.html b/tests/cell/spreadsheet-calculation/CopyPasteTests.html similarity index 89% rename from cell/.unit-tests/CopyPasteTests.html rename to tests/cell/spreadsheet-calculation/CopyPasteTests.html index 8656fcad23..bc0cd0912c 100644 --- a/cell/.unit-tests/CopyPasteTests.html +++ b/tests/cell/spreadsheet-calculation/CopyPasteTests.html @@ -11,10 +11,10 @@ - + diff --git a/cell/.unit-tests/CopyPasteTests.js b/tests/cell/spreadsheet-calculation/CopyPasteTests.js similarity index 100% rename from cell/.unit-tests/CopyPasteTests.js rename to tests/cell/spreadsheet-calculation/CopyPasteTests.js diff --git a/cell/.unit-tests/FormulaTests.html b/tests/cell/spreadsheet-calculation/FormulaTests.html similarity index 84% rename from cell/.unit-tests/FormulaTests.html rename to tests/cell/spreadsheet-calculation/FormulaTests.html index 3a131bde66..528789b8ed 100644 --- a/cell/.unit-tests/FormulaTests.html +++ b/tests/cell/spreadsheet-calculation/FormulaTests.html @@ -10,14 +10,14 @@ - + - +
diff --git a/cell/.unit-tests/FormulaTests.js b/tests/cell/spreadsheet-calculation/FormulaTests.js similarity index 100% rename from cell/.unit-tests/FormulaTests.js rename to tests/cell/spreadsheet-calculation/FormulaTests.js diff --git a/cell/.unit-tests/subdir/PivotTests.html b/tests/cell/spreadsheet-calculation/PivotTests.html similarity index 94% rename from cell/.unit-tests/subdir/PivotTests.html rename to tests/cell/spreadsheet-calculation/PivotTests.html index acb4942b80..692b6dfd9b 100644 --- a/cell/.unit-tests/subdir/PivotTests.html +++ b/tests/cell/spreadsheet-calculation/PivotTests.html @@ -18,7 +18,7 @@ }); - + diff --git a/cell/.unit-tests/subdir/PivotTests.js b/tests/cell/spreadsheet-calculation/PivotTests.js similarity index 100% rename from cell/.unit-tests/subdir/PivotTests.js rename to tests/cell/spreadsheet-calculation/PivotTests.js diff --git a/cell/.unit-tests/RunCellFormatTests.html b/tests/cell/spreadsheet-calculation/RunCellFormatTests.html similarity index 89% rename from cell/.unit-tests/RunCellFormatTests.html rename to tests/cell/spreadsheet-calculation/RunCellFormatTests.html index 409a965ca9..3379fe9826 100644 --- a/cell/.unit-tests/RunCellFormatTests.html +++ b/tests/cell/spreadsheet-calculation/RunCellFormatTests.html @@ -10,10 +10,10 @@ - + diff --git a/cell/.unit-tests/RunTests.html b/tests/cell/spreadsheet-calculation/RunTests.html similarity index 89% rename from cell/.unit-tests/RunTests.html rename to tests/cell/spreadsheet-calculation/RunTests.html index c6716999b0..37c5e68dac 100644 --- a/cell/.unit-tests/RunTests.html +++ b/tests/cell/spreadsheet-calculation/RunTests.html @@ -10,10 +10,10 @@ - + diff --git a/cell/.unit-tests/benchmark-range-iterator.html b/tests/cell/spreadsheet-calculation/benchmark-range-iterator.html similarity index 99% rename from cell/.unit-tests/benchmark-range-iterator.html rename to tests/cell/spreadsheet-calculation/benchmark-range-iterator.html index 486257b28c..edec3d313e 100644 --- a/cell/.unit-tests/benchmark-range-iterator.html +++ b/tests/cell/spreadsheet-calculation/benchmark-range-iterator.html @@ -10,10 +10,10 @@ - + diff --git a/cell/.unit-tests/benchmark-range-iterator.js b/tests/cell/spreadsheet-calculation/benchmark-range-iterator.js similarity index 100% rename from cell/.unit-tests/benchmark-range-iterator.js rename to tests/cell/spreadsheet-calculation/benchmark-range-iterator.js diff --git a/cell/.unit-tests/open-oox-in-browser.html b/tests/cell/spreadsheet-calculation/open-oox-in-browser.html similarity index 84% rename from cell/.unit-tests/open-oox-in-browser.html rename to tests/cell/spreadsheet-calculation/open-oox-in-browser.html index bd2fda3d19..934aad9561 100644 --- a/cell/.unit-tests/open-oox-in-browser.html +++ b/tests/cell/spreadsheet-calculation/open-oox-in-browser.html @@ -10,10 +10,10 @@ - + diff --git a/cell/.unit-tests/open-oox-in-browser.js b/tests/cell/spreadsheet-calculation/open-oox-in-browser.js similarity index 100% rename from cell/.unit-tests/open-oox-in-browser.js rename to tests/cell/spreadsheet-calculation/open-oox-in-browser.js diff --git a/cell/.unit-tests/stax-reader.html b/tests/cell/spreadsheet-calculation/stax-reader.html similarity index 89% rename from cell/.unit-tests/stax-reader.html rename to tests/cell/spreadsheet-calculation/stax-reader.html index 523c747f61..0827d1eb01 100644 --- a/cell/.unit-tests/stax-reader.html +++ b/tests/cell/spreadsheet-calculation/stax-reader.html @@ -10,10 +10,10 @@ - + diff --git a/cell/.unit-tests/stax-reader.js b/tests/cell/spreadsheet-calculation/stax-reader.js similarity index 100% rename from cell/.unit-tests/stax-reader.js rename to tests/cell/spreadsheet-calculation/stax-reader.js diff --git a/cell/.unit-tests/tests.js b/tests/cell/spreadsheet-calculation/tests.js similarity index 100% rename from cell/.unit-tests/tests.js rename to tests/cell/spreadsheet-calculation/tests.js diff --git a/cell/.unit-tests/testsForFWB.html b/tests/cell/spreadsheet-calculation/testsForFWB.html similarity index 89% rename from cell/.unit-tests/testsForFWB.html rename to tests/cell/spreadsheet-calculation/testsForFWB.html index 763777fd62..a6a44bacf0 100644 --- a/cell/.unit-tests/testsForFWB.html +++ b/tests/cell/spreadsheet-calculation/testsForFWB.html @@ -9,10 +9,10 @@ - + diff --git a/cell/.unit-tests/testsForFWB.html.js b/tests/cell/spreadsheet-calculation/testsForFWB.html.js similarity index 100% rename from cell/.unit-tests/testsForFWB.html.js rename to tests/cell/spreadsheet-calculation/testsForFWB.html.js