Skip to content

Commit 535fe87

Browse files
committed
Fix failing test
1 parent 0c8a0a3 commit 535fe87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"scripts": {
6565
"dev": "run-p watch:**",
66-
"test": "mocha --require ./ignoreImports.ts --require ts-node/register 'test/**/*.ts'",
66+
"test": "mocha --require ./ignoreImports.ts --require ts-node/register 'test/**/*.ts' '**/*.test.ts'",
6767
"watch:webpack": "NODE_ENV=watch webpack-dev-server --mode development",
6868
"watch:eleventy": "eleventy --watch",
6969
"fast-build": "NODE_ENV=build webpack --mode production",

test/formatters/jsonld/EventFormatter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('JSON-LD formatted Event', () => {
2929
timezone: 'Europe/Amsterdam',
3030
});
3131
const event = new Event(options, 1, 'xufd3', '2-day workshop', schedule, new Language([]),
32-
new Location(false, '00'), new RegistrationPage({}, null, ''), []);
32+
new Location(false, '00'), new RegistrationPage({}, null, false, ''), []);
3333
event.description = 'Test description';
3434
const formatted = EventFormatter.format(event);
3535

0 commit comments

Comments
 (0)