Skip to content
Snippets Groups Projects
Select Git revision
  • 7efff3740b24450abf6b658ba6fb8aeb0d82b05b
  • master default protected
  • v1.23.2
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.21.1
  • v1.21.0
  • v1.20.3
  • v1.20.2
  • v1.20.1
  • v1.20.0
  • v1.19.4
  • v1.19.3
  • v1.19.2
  • v1.19.1
  • v1.19.0
  • v1.18.2
  • v1.18.1
  • v1.18.0
  • v1.17.0
  • v1.16.1
22 results

import.go

Blame
  • monster.mjs 544 B
    import {expect} from "chai"
    import {Version, getMonsterVersion} from "../../../application/source/types/version.mjs";
    
    describe('Monster', function () {
    
        describe('.getMonsterVersion()', function () {
            let monsterVersion
    
            /** don´t touch, replaced by make with package.json version */
            monsterVersion = new Version("3.31.0")
    
            let m = getMonsterVersion();
    
            it('should ' + monsterVersion + ' is ' + m, function () {
                expect(m.compareTo(monsterVersion)).is.equal(0);
            });
    
        });
    
    });