From d780d2648341d848d15db53984433e7dbb19cc2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Fri, 15 Apr 2022 13:01:23 +0100 Subject: [PATCH] Add more test cases for molecules-cells --- js/tests/molecules-cells_test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/tests/molecules-cells_test.js b/js/tests/molecules-cells_test.js index 85090f2e8..cca507a9f 100644 --- a/js/tests/molecules-cells_test.js +++ b/js/tests/molecules-cells_test.js @@ -4,9 +4,11 @@ const t = (f) => tests.push(f) t(({ eq }) => eq(RNA(''), '')) t(({ eq }) => eq(RNA('TAGC'), 'AUCG')) t(({ eq }) => eq(RNA(DNA('AUCG')), 'AUCG')) +t(({ eq }) => eq(RNA(DNA('CAUG')), 'CAUG')) t(({ eq }) => eq(DNA(''), '')) t(({ eq }) => eq(DNA('AUCG'), 'TAGC')) t(({ eq }) => eq(DNA(RNA('TAGC')), 'TAGC')) +t(({ eq }) => eq(DNA(RNA('GCAT')), 'GCAT')) Object.freeze(tests)