Example #1
0
 it('should bootstrap', async(() => {
      var body = writeBody('<app></app>');
      serverBootstrap(MyServerApp).then(() => {
        expect(getDOM().getText(body)).toEqual('Works!');
      });
    }));
Example #2
0
 it('should bootstrap', async(() => {
      var body = writeBody('<app></app>');
      serverBootstrap(MyServerApp, [
        BROWSER_APP_PROVIDERS, BROWSER_APP_COMPILER_PROVIDERS
      ]).then(() => { expect(getDOM().getText(body)).toEqual('Works!'); });
    }));