@rr0/cms
Version:
RR0 Content Management System (CMS)
49 lines (48 loc) • 1.94 kB
JavaScript
import { Level2Date as EdtfDate } from "@rr0/time";
import { cmsTestUtil } from "../../../test/index.js";
const noWeekdayOptions = { ...cmsTestUtil.intlOptions };
noWeekdayOptions.weekday = undefined;
export const urecatTestCases = [
{
id: "1977-03-12-nzealand-gisbornef.htm",
time: new EdtfDate({ year: 1977, month: 3, day: 12 }),
url: "https://ufologie.patrickgross.org/ce3/1977-03-12-nzealand-gisbornef.htm",
// title: "12 MARS 1977, GISBORNE, GISBORNE DISTRICT COUNCIL, NOUVELLE ZELANDE, TROIS FEMMES",
title: "12 MARS 1977, GISBORNE, GISBORNE DISTRICT COUNCIL, NOUVELLE ZÉLANDE, TROIS PERSONNES",
basicInfo: {
base: {
sightingDate: new EdtfDate({ year: 1977, month: 3, day: 12 }),
location: {
placeName: "Gisborne",
country: "Nouvelle Zélande",
departmentOrState: "Gisborne District Council"
},
witnesses: [
{ name: "femme 1" },
{ name: "femme 2" },
{ name: "femme 3" }
]
}
}
},
{
id: "1977-03-04-canada-sundownf.htm",
time: new EdtfDate({ year: 1977, month: 3, day: 4 }),
url: "https://ufologie.patrickgross.org/ce3/1977-03-04-canada-sundownf.htm",
// title: "4 MARS 1977, SUNDOWN, MANITOBA, CANADA, UN HOMME",
title: "4 MARS 1977, SUNDOWN, MANITOBA, CANADA, UNE PERSONNE",
basicInfo: {
base: {
sightingDate: new EdtfDate({ year: 1977, month: 3, day: 4 }),
location: {
placeName: "Sundown",
country: "Canada",
departmentOrState: "Manitoba"
},
witnesses: [
{ name: "Un homme" }
]
}
}
}
];