Skip to content
Snippets Groups Projects
Verified Commit ee0b7703 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: repair url in tests #230

parent abc33292
No related branches found
No related tags found
No related merge requests found
...@@ -159,7 +159,7 @@ function getMonsterVersion() { ...@@ -159,7 +159,7 @@ function getMonsterVersion() {
} }
/** don't touch, replaced by make with package.json version */ /** don't touch, replaced by make with package.json version */
monsterVersion = new Version("3.73.2"); monsterVersion = new Version("3.73.5");
return monsterVersion; return monsterVersion;
} }
...@@ -76,7 +76,7 @@ describe('Data', function () { ...@@ -76,7 +76,7 @@ describe('Data', function () {
describe('External Data', () => { describe('External Data', () => {
let id = new ID('data').toString(); let id = new ID('data').toString();
let server, data, url = 'data:text/javascript;base64,SGVsbG8sIFdvcmxkIQo='; let server, data, url = 'https://cdnjs.cloudflare.com/ajax/libs/layzr.js/2.2.2/layzr.min.js';
beforeEach(() => { beforeEach(() => {
......
...@@ -51,7 +51,7 @@ describe('Link', function () { ...@@ -51,7 +51,7 @@ describe('Link', function () {
this.timeout(5000); this.timeout(5000);
let id = new ID('link').toString(); let id = new ID('link').toString();
let link, url = 'data:text/css;base64,SGVsbG8sIFdvcmxkIQo='; let link, url = 'https://alvine.io/main.min.css';
beforeEach(() => { beforeEach(() => {
......
...@@ -54,7 +54,7 @@ describe('Stylesheet', function () { ...@@ -54,7 +54,7 @@ describe('Stylesheet', function () {
describe('External Stylesheet', () => { describe('External Stylesheet', () => {
let id = new ID('Stylesheet').toString(); let id = new ID('Stylesheet').toString();
let stylesheet, url = 'data:text/css;base64,SGVsbG8sIFdvcmxkIQo='; let stylesheet, url = 'https://alvine.io/main.min.css';
beforeEach(() => { beforeEach(() => {
......
...@@ -60,7 +60,7 @@ describe('Script', function () { ...@@ -60,7 +60,7 @@ describe('Script', function () {
describe('External JS', () => { describe('External JS', () => {
let id = new ID('script').toString(); let id = new ID('script').toString();
let server, script, url = 'data:text/javascript;base64,SGVsbG8sIFdvcmxkIQo='; let server, script, url = 'https://cdnjs.cloudflare.com/ajax/libs/layzr.js/2.2.2/layzr.min.js';
beforeEach(() => { beforeEach(() => {
......
...@@ -7,7 +7,7 @@ describe('Monster', function () { ...@@ -7,7 +7,7 @@ describe('Monster', function () {
let monsterVersion let monsterVersion
/** don´t touch, replaced by make with package.json version */ /** don´t touch, replaced by make with package.json version */
monsterVersion = new Version("3.73.2") monsterVersion = new Version("3.73.5")
let m = getMonsterVersion(); let m = getMonsterVersion();
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
</head> </head>
<body> <body>
<div id="headline" style="display: flex;align-items: center;justify-content: center;flex-direction: column;"> <div id="headline" style="display: flex;align-items: center;justify-content: center;flex-direction: column;">
<h1 style='margin-bottom: 0.1em;'>Monster 3.73.2</h1> <h1 style='margin-bottom: 0.1em;'>Monster 3.73.5</h1>
<div id="lastupdate" style='font-size:0.7em'>last update Di 2. Jul 20:16:21 CEST 2024</div> <div id="lastupdate" style='font-size:0.7em'>last update Mi 31. Jul 23:19:18 CEST 2024</div>
</div> </div>
<div id="mocha-errors" <div id="mocha-errors"
style="color: red;font-weight: bold;display: flex;align-items: center;justify-content: center;flex-direction: column;margin:20px;"></div> style="color: red;font-weight: bold;display: flex;align-items: center;justify-content: center;flex-direction: column;margin:20px;"></div>
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment