mirror of
				https://github.com/zitadel/zitadel.git
				synced 2025-11-04 06:38:48 +00:00 
			
		
		
		
	* feat: console frontend * chore(dependabot): cycle and npm * chore: rename citadel to zitadel, remove generated files * chore: delete go files * chore(frontend): ci steps * chore: remove docker and envoy files * chore: remove docker file * chore: working dir * chore: run proto build * add console start * chore: restructure folders * chore: remove gui build * statikFs * generate proto for console * add statik import * import * chore: try statik * chore: path * chore: path * chore: script in root * chore: order build steps * chore: go get * chore: folder traversal * chore: non empty test file * chore: gitignore * chore: gitignore * chore: statik path * chore: switch to failing FE build * fix: build * fix: project-grant-test * fix: rm test * add statik.go * go mod tidy * chore: place test, seperate test from build * chore: lint all the world * chore: ci the world instead * chore: tune docker * chore: undo container test * chore: fix run * chore: docker build * chore: test docker build * chore: go build flags * finaly * fix caos_local * go mod Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: Max Peintner <max@caos.ch>
		
			
				
	
	
		
			33 lines
		
	
	
		
			965 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			965 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Karma configuration file, see link for more information
 | 
						|
// https://karma-runner.github.io/1.0/config/configuration-file.html
 | 
						|
 | 
						|
module.exports = function(config) {
 | 
						|
	config.set({
 | 
						|
		basePath: '',
 | 
						|
		frameworks: [ 'jasmine', '@angular-devkit/build-angular' ],
 | 
						|
		plugins: [
 | 
						|
			require('karma-jasmine'),
 | 
						|
			require('karma-chrome-launcher'),
 | 
						|
			require('karma-jasmine-html-reporter'),
 | 
						|
			require('karma-coverage-istanbul-reporter'),
 | 
						|
			require('@angular-devkit/build-angular/plugins/karma')
 | 
						|
		],
 | 
						|
		client: {
 | 
						|
			clearContext: false // leave Jasmine Spec Runner output visible in browser
 | 
						|
		},
 | 
						|
		coverageIstanbulReporter: {
 | 
						|
			dir: require('path').join(__dirname, './coverage/console'),
 | 
						|
			reports: [ 'html', 'lcovonly', 'text-summary' ],
 | 
						|
			fixWebpackSourcePaths: true
 | 
						|
		},
 | 
						|
		reporters: [ 'progress', 'kjhtml' ],
 | 
						|
		port: 9876,
 | 
						|
		colors: true,
 | 
						|
		logLevel: config.LOG_INFO,
 | 
						|
		autoWatch: true,
 | 
						|
		browsers: [ 'Chrome' ],
 | 
						|
		singleRun: false,
 | 
						|
		restartOnFileChange: true
 | 
						|
	});
 | 
						|
};
 |