Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(634)

Unified Diff: third_party/pkg/angular/karma.conf.js

Issue 1058283006: Update pubspecs and dependencies to get pkgbuild tests working. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pkg/angular/karma-perf.conf.js ('k') | third_party/pkg/angular/karma_run.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pkg/angular/karma.conf.js
diff --git a/third_party/pkg/angular/karma.conf.js b/third_party/pkg/angular/karma.conf.js
deleted file mode 100644
index 9e74d7e652212a2a40b9958b43c8bef55655d836..0000000000000000000000000000000000000000
--- a/third_party/pkg/angular/karma.conf.js
+++ /dev/null
@@ -1,53 +0,0 @@
-module.exports = function(config) {
- config.set({
- //logLevel: config.LOG_DEBUG,
- basePath: '.',
- frameworks: ['dart-unittest'],
-
- // list of files / patterns to load in the browser
- // all tests must be 'included', but all other libraries must be 'served' and
- // optionally 'watched' only.
- files: [
- 'test/jasmine_syntax.dart',
- 'test/*.dart',
- 'test/**/*_spec.dart',
- 'test/config/filter_tests.dart',
- {pattern: '**/*.dart', watched: true, included: false, served: true},
- 'packages/browser/dart.js',
- 'packages/browser/interop.js'
- ],
-
- exclude: [
- 'test/io/**'
- ],
-
- autoWatch: false,
-
- // If browser does not capture in given timeout [ms], kill it
- captureTimeout: 5000,
-
- plugins: [
- 'karma-dart',
- 'karma-chrome-launcher',
- 'karma-script-launcher',
- 'karma-junit-reporter',
- '../../../karma-parser-generator',
- '../../../karma-parser-getter-setter'
- ],
-
- customLaunchers: {
- Dartium: { base: 'ChromeCanary', flags: ['--no-sandbox'] },
- ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] }
- },
-
- preprocessors: {
- 'test/core/parser/generated_functions.dart': ['parser-generator'],
- 'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter']
- },
-
- junitReporter: {
- outputFile: 'test_out/unit.xml',
- suite: 'unit'
- }
- });
-};
« no previous file with comments | « third_party/pkg/angular/karma-perf.conf.js ('k') | third_party/pkg/angular/karma_run.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698