From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/ava/index.js.flow | 166 ----------------------------------------- 1 file changed, 166 deletions(-) delete mode 100644 node_modules/ava/index.js.flow (limited to 'node_modules/ava/index.js.flow') diff --git a/node_modules/ava/index.js.flow b/node_modules/ava/index.js.flow deleted file mode 100644 index e0bda9aef..000000000 --- a/node_modules/ava/index.js.flow +++ /dev/null @@ -1,166 +0,0 @@ -/* @flow */ - -/** - * Misc Setup Types - */ - -type PromiseLike = { - then( - onFulfill?: (value: R) => Promise | U, - onReject?: (error: any) => Promise | U - ): Promise; -} - -type ObservableLike = { - subscribe(observer: (value: {}) => void): void; -}; - -type SpecialReturnTypes = - | PromiseLike - | Iterator - | ObservableLike; - -type Constructor = Class<{ - constructor(...args: Array): any -}>; - -type ErrorValidator = - | Constructor - | RegExp - | string - | ((error: any) => boolean); - -/** - * Assertion Types - */ - -type AssertContext = { - // Passing assertion. - pass(message?: string): void; - // Failing assertion. - fail(message?: string): void; - // Assert that value is truthy. - truthy(value: mixed, message?: string): void; - // Assert that value is falsy. - falsy(value: mixed, message?: string): void; - // Assert that value is true. - true(value: mixed, message?: string): void; - // Assert that value is false. - false(value: mixed, message?: string): void; - // Assert that value is equal to expected. - is(value: U, expected: U, message?: string): void; - // Assert that value is not equal to expected. - not(value: U, expected: U, message?: string): void; - // Assert that value is deep equal to expected. - deepEqual(value: U, expected: U, message?: string): void; - // Assert that value is not deep equal to expected. - notDeepEqual(value: U, expected: U, message?: string): void; - // Assert that function throws an error or promise rejects. - // @param error Can be a constructor, regex, error message or validation function. - throws: { - (value: PromiseLike, error?: ErrorValidator, message?: string): Promise; - (value: () => mixed, error?: ErrorValidator, message?: string): any; - }; - // Assert that function doesn't throw an error or promise resolves. - notThrows: { - (value: PromiseLike, message?: string): Promise; - (value: () => mixed, message?: string): void; - }; - // Assert that contents matches regex. - regex(contents: string, regex: RegExp, message?: string): void; - // Assert that contents matches a snapshot. - snapshot: ((contents: any, message?: string) => void) & ((contents: any, options: {id: string}, message?: string) => void); - // Assert that contents does not match regex. - notRegex(contents: string, regex: RegExp, message?: string): void; - // Assert that error is falsy. - ifError(error: any, message?: string): void; -}; - -/** - * Context Types - */ - -type TestContext = AssertContext & { - title: string; - plan(count: number): void; - skip: AssertContext; - log(message: string): void; -}; -type ContextualTestContext = TestContext & { context: any; }; -type ContextualCallbackTestContext = TestContext & { context: any; end(): void; }; - -/** - * Test Implementations - */ - -type TestFunction = { - (t: T, ...args: Array): R; - title?: (providedTitle: string, ...args: Array) => string; -}; - -type TestImplementation = - | TestFunction - | Array>; - -type ContextualTest = TestImplementation; -type ContextualCallbackTest = TestImplementation; - - -/** - * Method Types - */ - -type ContextualTestMethod = { - ( implementation: ContextualTest): void; - (name: string, implementation: ContextualTest): void; - - serial : ContextualTestMethod; - before : ContextualTestMethod; - after : ContextualTestMethod; - skip : ContextualTestMethod; - todo : ContextualTestMethod; - failing : ContextualTestMethod; - only : ContextualTestMethod; - beforeEach : ContextualTestMethod; - afterEach : ContextualTestMethod; - cb : ContextualCallbackTestMethod; - always : ContextualTestMethod; -}; - -type ContextualCallbackTestMethod = { - ( implementation: ContextualCallbackTest): void; - (name: string, implementation: ContextualCallbackTest): void; - - serial : ContextualCallbackTestMethod; - before : ContextualCallbackTestMethod; - after : ContextualCallbackTestMethod; - skip : ContextualCallbackTestMethod; - todo : ContextualCallbackTestMethod; - failing : ContextualCallbackTestMethod; - only : ContextualCallbackTestMethod; - beforeEach : ContextualCallbackTestMethod; - afterEach : ContextualCallbackTestMethod; - cb : ContextualCallbackTestMethod; - always : ContextualCallbackTestMethod; -}; - -/** - * Public API - */ - -declare module.exports: { - ( run: ContextualTest, ...args: any): void; - (name: string, run: ContextualTest, ...args: any): void; - - beforeEach : ContextualTestMethod; - afterEach : ContextualTestMethod; - serial : ContextualTestMethod; - before : ContextualTestMethod; - after : ContextualTestMethod; - skip : ContextualTestMethod; - todo : ContextualTestMethod; - failing : ContextualTestMethod; - only : ContextualTestMethod; - cb : ContextualCallbackTestMethod; - always : ContextualTestMethod; -}; -- cgit v1.2.3