I'm using ag-grid v.17 and in order for it to show the grid correctly, I had to import ag-grid .css in .angular-cli.json, but when I'm creating a testBed in karma unit test, how can I add those css files?
styles I added in .angular-cli.json
"styles": [
"styles/app.scss",
"../node_modules/ag-grid/dist/styles/ag-grid.css",
"../node_modules/ag-grid/dist/styles/ag-theme-balham.css",
"../node_modules/ag-grid/dist/styles/compiled-icons.css"
],