Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tasks/transform_conformance/snapshots/oxc.snap.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
commit: 1d4546bc

Passed: 176/293
Passed: 175/293

# All Passed:
* babel-plugin-transform-class-static-block
Expand Down Expand Up @@ -1417,7 +1417,7 @@ after transform: ["Function", "babelHelpers"]
rebuilt : ["babelHelpers", "dec"]


# plugin-styled-components (20/34)
# plugin-styled-components (19/34)
* styled-components/add-identifier-with-top-level-import-paths/input.js
x Output mismatch

Expand All @@ -1439,6 +1439,9 @@ x Output mismatch
* styled-components/does-not-replace-native-with-no-tags/input.js
x Output mismatch

* styled-components/minify-single-line-comments-with-interpolations/input.js
x Output mismatch

* styled-components/pre-transpiled/input.js
x Output mismatch

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,10 @@ const Test7 = styled.div`
${'green'} // color: ${'red'}${'blue'};
height: ${p => p.props.height};
`

const Test8 = styled.div`
width: 100%;
// color: ${'red'};
color: ${'blue'};
height: ${123};
`
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,9 @@ const Test7 = styled.div.withConfig({ displayName: "input__Test7", componentId:
p => p.props.width,
'green',
p => p.props.height,
);
);
const Test8 = styled.div.withConfig({ displayName: "input__Test8", componentId: "sc-clieju-7" })(
["width:100%;color:", ";height:", ";"],
"blue",
123,
);
Loading