UNPKG

ts-site-starter

Version:

![npm](https://img.shields.io/npm/v/ts-site-starter.svg) ![license](https://img.shields.io/npm/l/ts-site-starter.svg) ![github-issues](https://img.shields.io/github/issues/wspecs/ts-site-starter.svg)

15 lines (14 loc) 440 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const router_1 = require("../lib/router"); const chai_1 = require("chai"); describe('word parser', () => { let appRouter; beforeEach(() => { appRouter = new router_1.BasicRoutes(); }); it('initializes', () => { chai_1.expect(appRouter.basePath).to.equal(''); chai_1.expect(appRouter.templatePath).to.equal(''); }); });