0

我正在使用angular-cli,我想使用兩個karma.conf.js文件進行測試。angular-cli - 使用多個karma.conf.js

  1. 對於CI:對於那些我使用的無頭鍍鉻

    customLaunchers:{

    ChromeHeadless: { 
        base: 'Chrome', 
        flags: [ 
         '--headless', 
         '--disable-gpu', 
         // Without a remote debugging port, Google Chrome exits immediately. 
         '--remote-debugging-port=9222', 
        ], 
        } 
    } 
    
  2. 對於開發:爲此我使用Chrome。

有什麼辦法可以根據參數值在兩個karma.conf.js之間切換。

回答

0

您可以使用ng test --config (String)其中(String)是您所需的karma配置。您可能想檢查ng help test其他選項。

+0

構建不會捆綁「備選配置文件」,並且CI過程失敗。任何方式在包中包含其他文件? – lohiarahul