Skip to content
Snippets Groups Projects
Select Git revision
  • 776015c5cb4beaced150e09661afcf2b2b92afc9
  • master default protected
  • 1.31
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
  • 4.32.0
23 results

field-set.pcss

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.35.2")
    
            let m = getMonsterVersion();
    
            it('should ' + monsterVersion + ' is ' + m, function () {
                expect(m.compareTo(monsterVersion)).is.equal(0);
            });
    
        });
    
    });