gpt4 book ai didi

angular - [网络服务器] : 404:/@angular/core/testing, systemjs、 karma 、angular2、jspm

转载 作者:太空狗 更新时间:2023-10-29 19:30:15 25 4
gpt4 key购买 nike

我正在使用 systemjs、karma、angular2 和 jspm。该项目运行良好。当我运行测试时,我遇到了问题。说找不到核心测试库。我不确定在哪里更改此配置。

感谢任何帮助。

吉姆。

-- 单元测试

import {it, describe, expect, beforeEach, inject} from '@angular/core/testing'
import {myCOmponent} from 'path to my comonent';

describe('myCOmponent ', () => {
it('should have the component of defined', () => {
expect(myCOmponent).toBeDefined();
});
});

---- karma session

module.exports = function(config) {
config.set({

basePath: '',

frameworks: ['jasmine'],

files: [
// paths loaded by Karma
{pattern: 'jspm_packages/system-polyfills.js', included: true, watched: true},
{pattern: 'jspm_packages/system.src.js', included: true, watched: true},
{pattern: 'node_modules/es6-shim/es6-shim.js', included: true, watched: true},
{pattern: 'node_modules/angular2-polyfill/bundles/angular2-polyfill.js', included: true, watched: true},
{pattern: 'jspm_packages/npm/@angular/core/testing', included: true, watched: true},
{pattern: 'karma-test-shim.js', included: true, watched: true},


// paths to support debugging with source maps in dev tools
{pattern: 'app/**/*.ts', included: false, watched: false},
],

// proxied base paths
proxies: {
// required for component assests fetched by Angular's compiler
"/app/": "/base/app/"
},

preprocessors: {
// source files, that you wanna generate coverage for
// do not include tests or libraries
// (these files will be instrumented by Istanbul)
'app/**/*.js': ['coverage']
},

htmlReporter: {
outputFile: 'reports/test/index.html'
},

// optionally, configure the reporter
coverageReporter: {
type: 'json',
dir: 'reports/',
subdir: '.',
file: 'coverage.json'
},

reporters: ['progress', 'html', 'coverage'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
})
}

--- karma 垫片

// Tun on full stack traces in errors to help debugging
// Error.stackTraceLimit = Infinity;
Error.stackTraceLimit = 0;


jasmine.DEFAULT_TIMEOUT_INTERVAL = 3000;

// // Cancel Karma's synchronous start,
// // we will call `__karma__.start()` later, once all the specs are loaded.
__karma__.loaded = function() {};


System.config({
packages: {
'base/app': {
defaultExtension: false,
format: 'register',
map: Object.keys(window.__karma__.files).
filter(onlyAppFiles).
reduce(function createPathRecords(pathsMapping, appPath) {
// creates local module name mapping to global path with karma's fingerprint in path, e.g.:
// './hero.service': '/base/public/app/hero.service.js?f4523daf879cfb7310ef6242682ccf10b2041b3e'
var moduleName = appPath.replace(/^\/base\/app\//, './').replace(/\.js$/, '');
pathsMapping[moduleName] = appPath + '?' + window.__karma__.files[appPath]
return pathsMapping;
}, {})

}
}
});

System.import('@angular/core/testing').then(function(testing) {
console.log(testing);
return System.import('@angular/platform-browser-dynamic/testing').then(function(providers) {
testing.setBaseTestProviders(providers.TEST_BROWSER_PLATFORM_PROVIDERS,
providers.TEST_BROWSER_APPLICATION_PROVIDERS);
});
}).then(function() {
return Promise.all(
Object.keys(window.__karma__.files) // All files served by Karma.
.filter(onlySpecFiles)
// .map(filePath2moduleName) // Normalize paths to module names.
.map(function(moduleName) {
// loads all spec files via their global module names (e.g. 'base/public/app/hero.service.spec')
return System.import(moduleName);
}));
})
.then(function() {
__karma__.start();
}, function(error) {
__karma__.error(error.stack || error);
});


function filePath2moduleName(filePath) {
return filePath.
replace(/^\//, ''). // remove / prefix
replace(/\.\w+$/, ''); // remove suffix
}


function onlyAppFiles(filePath) {
return /^\/base\/app\/.*\.js$/.test(filePath)
}


function onlySpecFiles(path) {
return /^\/base\/test\/.*\.js$/.test(path);
}

最佳答案

所以配置这个有两个部分。你有 Karma 配置,你有 SystemJS 配置。 Karma 是服务器,因此您需要像处理任何应用程序一样将所有文件包含在服务器中。 files karma.conf 中的数组是您列出应包含在服务器中的所有文件的地方。所以目前你丢失了一堆 Angular 文件。您可以简单地执行以下操作以包含所有这些内容

{ pattern: 'jspm_packages/npm/@angular/**/*.js', included: false, watched: false },
{ pattern: 'jspm_packages/npm/@angular/**/*.js.map', included: false, watched: false },

这使用一种模式来包含所有 @angular文件。 include: false因为您不想将它们添加为 <script> s 到 karma 服务器中使用的索引页。 watched: false因为您不希望 Karma 在观看模式下观看它们。

您可能还需要其他文件,例如 rxjs .看看 karma.conf from the Angular 2 quickstart获取它们包含的所有文件的列表。

您还会注意到 systemjs.config.js文件。如果您使用 SystemJS 作为应用程序的模块加载器,那么您应该有这个文件。此文件加载应用程序所需的所有模块,因此您在测试时也需要它们。

然后您需要配置SystemJS 进行测试。您有应用 systemjs.config.js文件,但这仅适用于主应用程序。您仍然需要加载 @angular用于测试的模块,例如 @angular/core/testing .这些不包括在申请中systemjs.conf.js文件,因为您在应用程序中不需要这些测试文件。这就是karma-test-shim是为了。

所以在你身上 karma-test-shim ,您需要配置 SystemJS 以加载测试模块。你可以看看 karma-test-shim from the Angular 2 quickstart看看他们是如何配置它的。您将需要创建一个映射,以便可以使用短名称而不是完整路径来加载文件。例如

System.config({
paths: {
'jspm:': 'jspm_packages/npm/'
},
baseURL: 'base',

map: {
'@angular/core/testing': 'jspm:@angular/core/bundles/core-testing.umd.js',
'@angular/common/testing': 'jspm:@angular/common/bundles/common-testing.umd.js',
'@angular/compiler/testing': 'jspm:@angular/compiler/bundles/compiler-testing.umd.js',
'@angular/platform-browser/testing': 'jspm:@angular/platform-browser/bundles/platform-browser-testing.umd.js',
'@angular/platform-browser-dynamic/testing': 'jspm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js',
'@angular/http/testing': 'jspm:@angular/http/bundles/http-testing.umd.js',
'@angular/router/testing': 'jspm:@angular/router/bundles/router-testing.umd.js',
'@angular/forms/testing': 'jspm:@angular/forms/bundles/forms-testing.umd.js',
},
});

如果您查看 paths ,你会看到它只是设置了一个前缀,这样你以后就不需要输入那么多了。创建映射时将使用此前缀。

然后在map您将看到创建了别名。例如

'@angular/core/testing': 'jspm:@angular/core/bundles/core-testing.umd.js',

在这里看到映射 @angular/core/testing使用 paths 映射到实际的模块文件前面提到的前缀。这就是我们能够做到的方式

import { TestBed } from '@angular/core/testing'

System.import('@angular/core/testing')

正是因为映射,我们才能够做到这一点。如果我们没有映射,SystemJS 将查找文件名 @angular/core/testing它找不到,因此出现 404。

我认为这应该能为您提供足够的信息来帮助您弄清楚您需要做什么。查看 quickstart 中的文件我链接到了,如果你遇到困难,可以作为引用。

关于angular - [网络服务器] : 404:/@angular/core/testing, systemjs、 karma 、angular2、jspm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40772737/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com