如何添加Jasmine自定义匹配器手稿定义?

时间:2017-05-04 16:06:57

标签: javascript angular typescript types jasmine

我已looking around,此问题似乎是recurring thing。但是,我发现的解决方案似乎都不适合我。

使用以下内容:

{
  "typescript": "2.3.2",
  "jasmine-core": "2.6.1",
  "@types/jasmine": "2.5.47"
}

我无法使用Typescript来合并包含我的自定义匹配器定义的名称空间声明。

添加:

declare namespace jasmine {
  interface Matchers<T> {
    toBeAnyOf(expected: jasmine.Expected<T>, expectationFailOutput?: any): boolean;
  }
}

隐藏先前在jasmine上声明的所有其他类型。编译器输出错误,例如:

[ts] Namespace 'jasmine' has no exported member 'CustomMatcherFactories'
[ts] Namespace 'jasmine' has no exported member 'CustomMatcher'.

是否有任何正确的方法来添加自定义匹配器并使其与Typescript完美匹配?

如果您使用tslint规则集,则tslint:recommended会出现其他问题。这些规则禁止使用namespacemodule关键字,因此我必须禁用linter(或更改"no-namespace"规则)才能尝试此操作。如果这是“不推荐&#34;。

,那么不确定如何扩展定义

1 个答案:

答案 0 :(得分:6)

添加自定义匹配器时,我不得不修改三个文件。我创建了一个名为matchers.ts的文件,其中包含实际的匹配器。然后我为我的matchers.ts文件添加了一个导入到test.ts.最后,我在typings.d.ts文件中添加了一个包含我的匹配器的接口。

matchers.ts(任意名称)

beforeEach(() => {
    jasmine.addMatchers({
        toContainText: () => {
            return {
                compare: (actual: HTMLElement, expectedText: string, customMessage?: string) => {
                    const actualText = actual.textContent;
                    return {
                        pass: actualText.indexOf(expectedText) > -1,
                        get message() {
                            let failureMessage = 'Expected ' + actualText + ' to contain ' + expectedText;

                            if (customMessage) {
                                failureMessage = ' ' + customMessage;
                            }

                            return failureMessage;
                        }
                    };
                }
            };
        },
    });
});

test.ts

import 'test/test-helpers/global/matchers'; (my relative filepath)

typings.d.ts

declare module jasmine {
  interface Matchers {
    toContainText(text: string, message?: string): boolean;
  }
}