- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试使用 TypeScript 重写我的一个项目,因为我对 TypeScript 和 RequireJS 很陌生,所以我不确定我遗漏了什么。
我已遵循本指南 Karma - RequireJS并仔细检查了所有内容,但我还没有设法让它工作,至少不是 RequireJS。
附言我遇到的错误在帖子的末尾。
我在这个项目中使用的目录结构如下:
.
|-- WebEssentials-Settings.json
|-- build
|-- jake.sh
|-- jakefile.js
|-- node_modules
| |-- chai
| | |-- CONTRIBUTING.md
| | |-- History.md
| | |-- README.md
| | |-- ReleaseNotes.md
| | |-- bower.json
| | |-- chai.js
| | |-- index.js
| | |-- karma.conf.js
| | |-- karma.sauce.js
| | |-- lib
| | |-- node_modules
| | |-- package.json
| | `-- sauce.browsers.js
| |-- jake
| | |-- Jakefile
| | |-- Makefile
| | |-- README.md
| | |-- bin
| | |-- lib
| | |-- node_modules
| | |-- package.json
| | `-- test
| |-- karma
| | |-- CHANGELOG.md
| | |-- LICENSE
| | |-- README.md
| | |-- bin
| | |-- config.tpl.coffee
| | |-- config.tpl.js
| | |-- config.tpl.ls
| | |-- karma-completion.sh
| | |-- lib
| | |-- node_modules
| | |-- package.json
| | |-- requirejs.config.tpl.coffee
| | |-- requirejs.config.tpl.js
| | `-- static
| |-- karma-chai
| | |-- LICENSE
| | |-- README.md
| | |-- adapter.js
| | |-- index.js
| | `-- package.json
| |-- karma-mocha
| | |-- LICENSE
| | |-- README.md
| | |-- lib
| | `-- package.json
| |-- karma-requirejs
| | |-- LICENSE
| | |-- README.md
| | |-- lib
| | `-- package.json
| |-- mocha
| | |-- Readme.md
| | |-- bin
| | |-- images
| | |-- index.js
| | |-- lib
| | |-- mocha.css
| | |-- mocha.js
| | |-- node_modules
| | `-- package.json
| |-- requirejs
| | |-- README.md
| | |-- bin
| | |-- package.json
| | `-- require.js
| `-- shelljs
| |-- LICENSE
| |-- README.md
| |-- bin
| |-- global.js
| |-- make.js
| |-- package.json
| |-- scripts
| |-- shell.js
| `-- src
|-- scratchpad.txt
|-- src
| |-- app.main.js
| |-- app.main.js.map
| |-- app.main.ts
| |-- core
| | |-- exceptions.js
| | |-- exceptions.js.map
| | |-- exceptions.ts
| | |-- string.js
| | |-- string.js.map
| | |-- string.ts
| | |-- types.js
| | |-- types.js.map
| | `-- types.ts
| |-- css
| |-- index.html
| |-- libs
| | |-- jquery-2.1.0.js
| | |-- require.js
| | `-- typings
| |-- tests
| | |-- core
| | |-- test.main.js
| | |-- test.main.js.map
| | `-- test.main.ts
| |-- tsToolkit.csproj
| |-- tsToolkit.csproj.user
| |-- web.Debug.config
| |-- web.Release.config
| |-- web.config
| `-- widgets
|-- tools
| |-- karma
| | `-- karma.conf.js
| |-- lint
| | `-- lint_runner.js
| `-- mocha
| `-- mocha.ext.js
|-- tsToolkit.sln
|-- tsToolkit.sln.DotSettings.user
`-- tsToolkit.v12.suo
43 directories, 83 files
这是我用于 Karma 的配置文件。 -- karma .conf.js
// Karma configuration
// Generated on Wed Sep 25 2013 00:47:38 GMT+0300 (Jerusalem Daylight Time)
module.exports = function(config) {
config.set({
// base path, that will be used to resolve files and exclude
basePath: '../../',
// frameworks to use
frameworks: ['requirejs', 'mocha', 'chai'],
// list of files / patterns to load in the browser
files: [
"tools/mocha/mocha.ext.js",
"src/libs/*.js",
"src/tests/*/*.js",
"src/tests/test.main.js"
],
// list of files to exclude
exclude: [
'src/main.js'
],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
reporters: ['progress'],
// web server port
port: 8380,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: [],
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 60000,
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false
});
};
这是我对 RequireJS 的配置 - tests.main.js
interface Window {
// ReSharper disable InconsistentNaming
__karma__: any;
// ReSharper restore InconsistentNaming
}
var tests = [];
for (var file in window.__karma__.files) {
if (window.__karma__.files.hasOwnProperty(file)) {
if (/\.tests\.js$/.test(file))
{
tests.push(file);
}
}
}
declare var requirejs: any;
requirejs.config({
baseUrl: '/base/src',
deps: tests,
callback: window.__karma__.start
});
这是测试文件 -- types.tests.ts
import Types = require("./../../core/types");
describe("isUndefined", () =>
{
it("should return true when the object is undefined", () =>
{
});
});
这是我要测试的东西。
class Types {
public static isNull(value: any) : boolean
{
return false;
}
public static isUndefined(value: any) : boolean
{
return false;
}
public static isString(value: any) : boolean
{
return false;
}
public static isElement(value: any) : boolean
{
return false;
}
public static isNumber(value: any) : boolean
{
return false;
}
}
export = Types;
最后,这是我遇到的错误。
INFO [IE 9.0.0 (Windows 7)]: Connected on socket H-LT4D3cwsrYq1V01VdY with id manual-4093
IE 9.0.0 (Windows 7) ERROR
Mismatched anonymous define() module: function(require, exports) {
describe("isUndefined", function () {
it("should return true when the object is undefined", function () {
});
});
}
http://requirejs.org/docs/errors.html#mismatch
at D:/Projects/Code/Development/Visual Studio/tsToolkit/node_modules/requirejs/require.js:141
注意事项:
我尝试编辑生成的测试 .js 文件并使用命名模块只是为了确保一切正常并且确实如此!但我想通过每个测试并向生成的 .js 文件添加名称没有多大意义,不是吗?
define("core/types", ["require", "exports"], function(require, exports) {
describe("isUndefined", function () {
it("should return true when the object is undefined", function () {
});
});
});
//# sourceMappingURL=types.tests.js.map
我敢肯定,在对 TypeScript 进行了如此多的迭代之后,我希望他们没有错过它。 :p
我想我可以编写一些自动正确命名这些模块的代码,因为无论如何我都在使用构建文件,但我真的不想添加额外的工作,我希望这可能会被保存。
最佳答案
我花了几天时间才弄明白,我的 Karma 配置文件和 requirejs“tests.main.js”文件中的路径到处都是不正确的。
我还更改了项目结构,所以这里是我更改的所有内容以使其正常工作。
解决方案现在可在 GitHub 获得.
项目的目录结构。
.
|-- node_modules
| |-- jake
| | |-- bin
| | |-- lib
| | |-- node_modules
| | |-- test
| | |-- Jakefile
| | |-- Makefile
| | |-- README.md
| | `-- package.json
| |-- jasmine-node
| | |-- bin
| | |-- lib
| | |-- node_modules
| | |-- scripts
| | |-- spec
| | |-- src
| | |-- Gruntfile.coffee
| | |-- LICENSE
| | |-- README.md
| | |-- bower.json
| | |-- index.js
| | `-- package.json
| |-- karma
| | |-- bin
| | |-- lib
| | |-- node_modules
| | |-- static
| | |-- CHANGELOG.md
| | |-- LICENSE
| | |-- README.md
| | |-- config.tpl.coffee
| | |-- config.tpl.js
| | |-- config.tpl.ls
| | |-- karma-completion.sh
| | |-- package.json
| | |-- requirejs.config.tpl.coffee
| | `-- requirejs.config.tpl.js
| |-- karma-jasmine
| | |-- lib
| | |-- LICENSE
| | |-- README.md
| | `-- package.json
| |-- karma-requirejs
| | |-- lib
| | |-- LICENSE
| | |-- README.md
| | `-- package.json
| |-- karma-requirejs-preprocessor
| | `-- index.js
| |-- requirejs
| | |-- bin
| | |-- README.md
| | |-- package.json
| | `-- require.js
| `-- shelljs
| |-- bin
| |-- scripts
| |-- src
| |-- LICENSE
| |-- README.md
| |-- global.js
| |-- make.js
| |-- package.json
| `-- shell.js
|-- src
| |-- css
| |-- framework
| | |-- core
| | `-- widgets
| |-- libs
| | |-- typings
| | |-- jquery-2.1.0.js
| | `-- require.js
| |-- tests
| | |-- core
| | `-- test.main.js
| |-- app.main.js
| |-- app.main.js.map
| |-- app.main.ts
| |-- index.html
| |-- tsToolkit.csproj
| |-- tsToolkit.csproj.user
| |-- web.Debug.config
| |-- web.Release.config
| `-- web.config
|-- tools
| `-- karma
| `-- karma.conf.js
|-- WebEssentials-Settings.json
|-- jake.sh
|-- jakefile.js
|-- karma.sh
|-- scratchpad.txt
|-- tsToolkit.sln
|-- tsToolkit.sln.DotSettings.user
`-- tsToolkit.v12.suo
40 directories, 57 files
Karma 配置文件。
// Karma configuration
// Generated on Fri May 16 2014 08:27:07 GMT+0300 (Jerusalem Daylight Time)
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '../../',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine', 'requirejs'],
// list of files / patterns to load in the browser
files: [
{pattern: 'src/libs/*.js', included: false},
{pattern: 'src/framework/**/*.js', included: false},
{pattern: 'src/tests/**/*.tests.js', included: false},
'src/tests/test.main.js'
],
// list of files to exclude
exclude: [
'src/app.main.js'
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
// web server port
port: 8380,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: [],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false
});
};
这是 requirejs 文件 -- types.tests.js
var tests = [];
for (var file in window.__karma__.files) {
if (/\.tests\.js$/.test(file)) {
tests.push(file);
}
}
requirejs.config({
baseUrl: '/base/src',
deps: tests,
callback: window.__karma__.start
});
我想测试的用 TypeScript 编写的类的示例 -- types.ts
class Types {
public static isNull(value: any) : boolean
{
return false;
}
public static isUndefined(value: any) : boolean
{
return false;
}
public static isString(value: any) : boolean
{
return false;
}
public static isElement(value: any) : boolean
{
return false;
}
public static isNumber(value: any) : boolean
{
return false;
}
}
export = Types;
最后,我为函数“isUndefined”编写的测试 -- types.tests.ts
import Types = require("framework/core/types");
describe("isUndefined", () => {
it("should return true when the object is undefined", () => {
// Arrange
var obj;
// Act
var value = Types.isUndefined(obj);
// Assert
expect(value).toBe(true);
});
});
我希望它足够清楚,并能帮助其他正在为同样的问题而苦苦挣扎的人。
附言尽管我为 Karma 编写了一个 requirejs-preprocessor 来命名我的模块,但在这些更改之后我不再需要它,它就可以正常工作。
关于javascript - 让 TypeScript、Karma、RequireJS 和 Chai 一起工作的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23649413/
我想要的是能够在输入获得焦点或失去焦点时执行某些操作(两个事件)。 我尝试了以下方法,但这按事件单独工作(单独编码时):仅在焦点上,或仅在失去焦点时。 另外,我希望它尽可能跨平台(包括触摸设备),这是
我分别研究了TableView的Filtering和Pagination。 过滤: this帖子帮助我满足了我的需要 分页: this , this帖子也帮助了我 我想像这样将它们组合在一起: 详情-
我是 TDD 方法的新手,所以我想知道是否有人经历过这种机智可以启发我一点。我想获得一些关于如何一起使用 UML 和 TDD 方法的线索。 我已经习惯了:用 UML 设计 --> 生成骨架类(然后保持
我尝试使用入口点和 cmd 设置 Docker。 FROM debian:stretch RUN apt-get update && \ apt install gnupg ca-certificat
我想要一个 Class 对象,但我想强制它所代表的任何类扩展类 A 并实现接口(interface) B。 我能做到: Class 或者: Class 但我不能两者兼得。有办法做到这一点吗? 最佳答案
我是 Rubymine 的长期用户。 Rubymine 非常适合基于 html 的 Rails 应用程序,但我现在正在做更多的 SPA 客户端工作(例如 javascript/react)。我发现我真
我注意到我使用的某个脚本依赖于原型(prototype)。 (Lightbox 2) 它会与 jQuery 在同一页面上一起工作吗?有没有办法确保它们不冲突? 最佳答案 可以,但你需要采取 speci
我需要对表中显示的数据进行分页并通过 ajax 调用获取它 - 这是我通过使用具有以下配置的 dataTables 插件来完成的 - bServerSide : true; sAjaxSource :
我是 gtk 新手,所以想知道在 C 语言中归档和 gtk 是否可以一起使用?例如,我可以从 .txt 文件中读取,然后在相同的代码中使用 gtk 在标签或其他内容中显示它吗?如果是,怎么办? 谢谢!
有没有人设法得到Bck2Brwsr最近与 Java 8/JavaFX 8 一起工作?有没有兼容的机会?我找不到太多关于它的信息,也没有一个好的起点。使用给定的 Maven archetype我遇到了几
在我的应用程序中,用户通过 openid(与 stackoverflow 相同)登录/注销。 我想通过 oauth 向第三方应用程序开放我的应用程序。 如何创建我的 openid-consumer 应
我在启动和运行 Hibernate 和 Spring 时遇到一些问题。我有一个网络服务器项目,它使用了其他几个具有持久实体的项目。我遇到的问题是,对于存储在 WEB-INF/libs 内的另一个 ja
我有 @ControllerAdvice 类,它处理一组异常。我们还有一些其他异常,这些异常用 @ResponseStatus 注释进行注释。为了结合这两种方法,我们使用博客文章中描述的技术:http
我想在屏幕上使用进度条而不是 progressDialog。 我在我的 XML View 文件中插入了一个进度条,我想让它在加载时显示并在不加载时禁用它。 所以我使用的是可见的,但它发生了,所以其余的
CREATE TABLE `users` ( `id` int(11) AUTO_INCREMENT, `academicdegree` varchar(255),
IN() 中使用的查询返回:1, 2。然而,整个查询返回 0 行,这是不可能的,因为它们存在。我在这里做错了什么? SELECT DISTINCT li.auto_id FROM links
亲们, 我如何在使用 Jade 生成的表单上实现 jQuery 样式?我想做的是美化 表单并使它们可点击。我在 UI 方面很糟糕。期间。 我如何在表单上实现这个可选择的方法? http://jquer
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我可以: auto o1 = new Content; 但不能: std::shared_ptr o1(new Content); std::unique_ptr o1(new Content); 我
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 4 年前。 Improve this qu
我是一名优秀的程序员,十分优秀!