Skip to content
Snippets Groups Projects
Verified Commit a6847116 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX pipeline

parent ce687661
No related branches found
No related tags found
No related merge requests found
...@@ -121,11 +121,11 @@ QUnit.test("_get_tsv_string", function(assert) { ...@@ -121,11 +121,11 @@ QUnit.test("_get_tsv_string", function(assert) {
var tsv_string = f(entities, ["Bag", "Number"], true); var tsv_string = f(entities, ["Bag", "Number"], true);
var prefix = "data:text/csv;charset=utf-8," var prefix = "data:text/csv;charset=utf-8,"
assert.equal(tsv_string, assert.equal(tsv_string,
"ID\tBag\tNumber\n242\t6366, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413\t02 8 4aaa a\n2112\t\t1101\n2112\t\t1102", "tsv generated"); "ID\tVersion\tBag\tNumber\n242\tabc123\t6366, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413\t02 8 4aaa a\n2112\tabc124\t\t1101\n2112\tabc125\t\t1102", "tsv generated");
tsv_string = caosdb_table_export._encode_tsv_string(tsv_string); tsv_string = caosdb_table_export._encode_tsv_string(tsv_string);
assert.equal(tsv_string.slice(0,prefix.length), prefix); assert.equal(tsv_string.slice(0,prefix.length), prefix);
assert.equal(decodeURIComponent(tsv_string.slice(prefix.length, tsv_string.length)), assert.equal(decodeURIComponent(tsv_string.slice(prefix.length, tsv_string.length)),
"ID\tBag\tNumber\n242\t6366, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413\t02 8 4aaa a\n2112\t\t1101\n2112\t\t1102", "tsv generated"); "ID\tVersion\tBag\tNumber\n242\tabc123\t6366, 6406, 6407, 6408, 6409, 6410, 6411, 6412, 6413\t02 8 4aaa a\n2112\tabc124\t\t1101\n2112\tabc125\t\t1102", "tsv generated");
}); });
QUnit.test("_get_property_value", function (assert) { QUnit.test("_get_property_value", function (assert) {
......
...@@ -7,7 +7,7 @@ RUN apt-get update \ ...@@ -7,7 +7,7 @@ RUN apt-get update \
&& echo "deb https://deb.nodesource.com/node_14.x buster main" >> /etc/apt/sources.list \ && echo "deb https://deb.nodesource.com/node_14.x buster main" >> /etc/apt/sources.list \
&& apt-get update \ && apt-get update \
&& apt-get install -y \ && apt-get install -y \
firefox-esr gettext-base pylint3 python3-pip \ firefox-esr gettext-base python3-pip \
python3-httpbin git curl x11-apps xvfb unzip \ python3-httpbin git curl x11-apps xvfb unzip \
nodejs # Don't install `npm` (Debian), it conflicts with the `nodejs` (Node) package \ nodejs # Don't install `npm` (Debian), it conflicts with the `nodejs` (Node) package \
&& apt-get install -f && apt-get install -f
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment