Aristeidis Bampakos
Aristeidis Bampakos
Hey @yhornik 👋 Ngx-electronify uses `contextIsolation` and `nodeIntegration` only when you set the `allowIntegration` option to `true`.
Ngx-electronify does not make use of preload scripts for communicating with the renderer process. You can find more information at https://www.electronjs.org/docs/latest/tutorial/process-model#preload-scripts. I hope that helps 🙂
@kotpal the official styleguide for Angular is https://angular.io/guide/styleguide. This one is intended for AngularJS.
@copiali Classes have proven very useful to me in the case of unit testing where I have to create mock objects using their constructor: ``` export class Hero { constructor(public...
@np1124 you initialize the filter inside the unit test like this: ``` describe('filters', function() { beforeEach(angular.mock.module('applicationFilters')); var $filter; beforeEach(inject(function(_$filter_) { $filter = _$filter_; })); it('should return invalid date', function() {...
I usually add test specific content in a folder **test-helpers** under the root folder of the project.
Hey @3DGISKing I think it would make sense to file an issue to the cesium-webpack-example repository instead 😉
@3DGISKing I am not sure if it is indeed related to this repo, (it may have to do with the webpack configuration) but I think that reporting it there would...
@3DGISKing i do not know if it is ok to export CSS files through `package.json`, the maintainers of Cesium can tell that, but you have always the option of the...
@HDaghash I had the same problem and it turned out that the CSS of the library was conflicting with one of my application. You could try this if it works...