+
+ describe('Place without name, keywords, hierarchy', function () {
+ // e.g. a numeric house number
+ before(async function () {
+ page = await browser.newPage();
+ await page.goto('http://localhost:9999/details.html?osmtype=N&osmid=946563004&keywords=1&hierarchy=1');
+ await page.waitForSelector('.container .row');
+ });
+
+ after(async function () {
+ await page.close();
+ });
+
+ it('should display No Name, no keywords, no hierarchy', async function () {
+ let page_content = await page.$eval('body', el => el.textContent);
+
+ assert.ok(page_content.includes('Name No Name'));
+ if (!process.env.REVERSE_ONLY) {
+ assert.ok(page_content.includes('Place has no keywords'));
+ }
+ assert.ok(page_content.includes('Place is not parent of other places'));
+ });
+ });