Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 19b1753

Browse files
committed
fix: dont use absolute path for snapshot name
1 parent 4e57c69 commit 19b1753

File tree

1,602 files changed

+1607
-1615
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,602 files changed

+1607
-1615
lines changed

azure-pipelines.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
yarn check:configs
4040
displayName: 'Validate plugin configs'
4141
42+
- script: |
43+
yarn check:tests
44+
displayName: 'Validate generated fixture tests'
45+
4246
- script: |
4347
yarn test
4448
displayName: 'Run unit tests'
@@ -80,8 +84,8 @@ jobs:
8084
- job: publish_canary_version
8185
displayName: Publish the latest code as a canary version
8286
dependsOn:
83-
- primary_code_validation_and_tests
84-
- unit_tests_on_other_node_versions
87+
- primary_code_validation_and_tests
88+
- unit_tests_on_other_node_versions
8589
condition: and(succeeded(), eq(variables['Build.SourceBranchName'], 'master'), ne(variables['Build.Reason'], 'PullRequest'))
8690
pool:
8791
vmImage: 'Ubuntu-16.04'

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"cz": "git-cz",
2323
"check:docs": "lerna run check:docs",
2424
"check:configs": "lerna run check:configs",
25+
"check:tests": "lerna run check:tests",
2526
"generate-contributors": "yarn ts-node ./tools/generate-contributors.ts && yarn all-contributors generate",
2627
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
2728
"format-check": "prettier --list-different \"./**/*.{ts,js,json,md}\"",

packages/parser/tests/shared-fixtures/generated/comments/block-trailing-comment/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/block-trailing-comment.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/block-trailing-comment.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/comment-within-condition/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/comment-within-condition.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/comment-within-condition.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/export-default-anonymous-class/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/export-default-anonymous-class.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/export-default-anonymous-class.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsdoc-comment/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsdoc-comment.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsdoc-comment.src.js parses with location information 1`] = `
44
Object {
55
"$id": 6,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-attr-and-text-with-url/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-attr-and-text-with-url.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-attr-and-text-with-url.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-block-comment/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-block-comment.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-block-comment.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-comment-after-jsx/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-comment-after-jsx.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-comment-after-jsx.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-comment-after-self-closing-jsx/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-comment-after-self-closing-jsx.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-comment-after-self-closing-jsx.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-generic-with-comment-in-tag/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-generic-with-comment-in-tag.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-generic-with-comment-in-tag.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-tag-comment-after-prop/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-tag-comment-after-prop.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-tag-comment-after-prop.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-tag-comments/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-tag-comments.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-tag-comments.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-text-with-multiline-non-comment/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-text-with-multiline-non-comment.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-text-with-multiline-non-comment.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-text-with-url/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-text-with-url.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-text-with-url.src.js parses with location information 1`] = `
44
Object {
55
"$id": 11,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-with-greather-than/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-with-greather-than.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-with-greather-than.src.js parses with location information 1`] = `
44
Object {
55
"$id": 5,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/jsx-with-operators/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/jsx-with-operators.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/jsx-with-operators.src.js parses with location information 1`] = `
44
Object {
55
"$id": 5,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/line-comment-with-block-syntax/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/line-comment-with-block-syntax.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/line-comment-with-block-syntax.src.js parses with location information 1`] = `
44
Object {
55
"$id": 1,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/mix-line-and-block-comments/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/mix-line-and-block-comments.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/mix-line-and-block-comments.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/no-comment-regex/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/no-comment-regex.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/no-comment-regex.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/no-comment-template/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/no-comment-template.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/no-comment-template.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/surrounding-call-comments/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/surrounding-call-comments.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/surrounding-call-comments.src.js parses with location information 1`] = `
44
Object {
55
"$id": 5,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/surrounding-debugger-comments/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/surrounding-debugger-comments.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/surrounding-debugger-comments.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/surrounding-return-comments/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/surrounding-return-comments.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/surrounding-return-comments.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/surrounding-throw-comments/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/surrounding-throw-comments.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/surrounding-throw-comments.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/surrounding-while-loop-comments/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/surrounding-while-loop-comments.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/surrounding-while-loop-comments.src.js parses with location information 1`] = `
44
Object {
55
"$id": 6,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/switch-fallthrough-comment-in-function/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/switch-fallthrough-comment-in-function.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/switch-fallthrough-comment-in-function.src.js parses with location information 1`] = `
44
Object {
55
"$id": 8,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/switch-fallthrough-comment/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/switch-fallthrough-comment.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/switch-fallthrough-comment.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/switch-no-default-comment-in-function/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/switch-no-default-comment-in-function.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/switch-no-default-comment-in-function.src.js parses with location information 1`] = `
44
Object {
55
"$id": 7,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/switch-no-default-comment-in-nested-functions/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/switch-no-default-comment-in-nested-functions.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/switch-no-default-comment-in-nested-functions.src.js parses with location information 1`] = `
44
Object {
55
"$id": 14,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/switch-no-default-comment/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/switch-no-default-comment.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/switch-no-default-comment.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/template-string-block/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/template-string-block.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/template-string-block.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/comments/type-assertion-regression-test/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/comments/type-assertion-regression-test.src.ts parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/comments/type-assertion-regression-test.src.ts parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrayLiteral/array-literal-in-lhs/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrayLiteral/array-literal-in-lhs.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrayLiteral/array-literal-in-lhs.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrayLiteral/array-literals-in-binary-expr/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrayLiteral/array-literals-in-binary-expr.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrayLiteral/array-literals-in-binary-expr.src.js parses with location information 1`] = `
44
Object {
55
"$id": 1,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/as-param-with-params/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/as-param-with-params.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/as-param-with-params.src.js parses with location information 1`] = `
44
Object {
55
"$id": 5,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/as-param/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/as-param.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/as-param.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/basic-in-binary-expression/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/basic-in-binary-expression.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/basic-in-binary-expression.src.js parses with location information 1`] = `
44
Object {
55
"$id": 5,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/basic/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/basic.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/basic.src.js parses with location information 1`] = `
44
Object {
55
"$id": 2,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/block-body-not-object/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/block-body-not-object.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/block-body-not-object.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/block-body/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/block-body.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/block-body.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/error-dup-params/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-dup-params.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-dup-params.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-missing-paren.src.js parses with location information 1`] = `"';' expected."`;
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-missing-paren.src.js parses with location information 1`] = `"';' expected."`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-not-arrow.src.js parses with location information 1`] = `"Expression expected."`;
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-not-arrow.src.js parses with location information 1`] = `"Expression expected."`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-numeric-param-multi.src.js parses with location information 1`] = `"';' expected."`;
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-numeric-param-multi.src.js parses with location information 1`] = `"';' expected."`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-numeric-param.src.js parses with location information 1`] = `"';' expected."`;
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-numeric-param.src.js parses with location information 1`] = `"';' expected."`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-reverse-arrow.src.js parses with location information 1`] = `"Expression expected."`;
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-reverse-arrow.src.js parses with location information 1`] = `"Expression expected."`;

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/error-strict-default-param-eval/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-strict-default-param-eval.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-strict-default-param-eval.src.js parses with location information 1`] = `
44
Object {
55
"$id": 4,
66
"block": Object {

packages/parser/tests/shared-fixtures/generated/javascript/arrowFunctions/error-strict-dup-params/__snapshots__/withLocationInfo.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`/Users/bradzacher/github/typescript-eslint/packages/shared-fixtures/fixtures/javascript/arrowFunctions/error-strict-dup-params.src.js parses with location information 1`] = `
3+
exports[`../shared-fixtures/fixtures/javascript/arrowFunctions/error-strict-dup-params.src.js parses with location information 1`] = `
44
Object {
55
"$id": 3,
66
"block": Object {

0 commit comments

Comments
 (0)