forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the typescript parser outside of jest-editor-support to jest-tes… (
jestjs#2973) * Move the typescript parser outside of jest-editor-support to jest-test-typescript-parser * Move the fixture folder on the top level * rename babylonParser to parse and export TypeScript from jest-test-typescript-parser index.js * make node 4 happy.
- Loading branch information
1 parent
f6bc9d8
commit f67fc6d
Showing
22 changed files
with
69 additions
and
58 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
**/__mocks__/** | ||
**/__tests__/** | ||
src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "jest-test-typescript-parser", | ||
"version": "19.0.1", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/facebook/jest.git" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"main": "build/index.js", | ||
"dependencies": { | ||
"jest-editor-support": "^19.0.1", | ||
"typescript": "^2.0.10" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 35 additions & 37 deletions
72
...s/jest-editor-support/src/ScriptParser.js → .../jest-test-typescript-parser/src/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,35 @@ | ||
/** | ||
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @flow | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const {babylonParser} = require('./parsers/BabylonParser'); | ||
const {ItBlock, Expect} = require('./parsers/ParserNodes.js'); | ||
|
||
export type ParserReturn = { | ||
itBlocks: Array<ItBlock>, | ||
expects: Array<Expect>, | ||
}; | ||
|
||
/** | ||
* Converts the file into an AST, then passes out a | ||
* collection of it and expects. | ||
*/ | ||
function parse(file: string): ParserReturn { | ||
if (file.match(/\.tsx?$/)) { | ||
// This require is done here so that it can be optional for clients | ||
const {parse} = require('./parsers/TypeScriptParser'); | ||
return parse(file); | ||
} else { | ||
return babylonParser(file); | ||
} | ||
} | ||
|
||
module.exports = { | ||
parse, | ||
}; | ||
/** | ||
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @flow | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const {parse: babylonParser, ItBlock, Expect} = require('jest-editor-support'); | ||
const TypeScriptParser = require('./TypeScriptParser'); | ||
export type ParserReturn = { | ||
itBlocks: Array<ItBlock>, | ||
expects: Array<Expect>, | ||
}; | ||
|
||
/** | ||
* Converts the file into an AST, then passes out a | ||
* collection of it and expects. | ||
*/ | ||
function parse(file: string): ParserReturn { | ||
if (file.match(/\.tsx?$/)) { | ||
return TypeScriptParser.parse(file); | ||
} else { | ||
return babylonParser(file); | ||
} | ||
} | ||
|
||
module.exports = { | ||
TypeScriptParser, | ||
parse, | ||
}; |