Skip to content

Commit

Permalink
[test] class names can't start with a digit
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Aug 22, 2020
1 parent 45c750f commit a076c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/describeConformance.js
Expand Up @@ -49,7 +49,7 @@ function findRootComponent(wrapper, { component }) {
}

function randomStringValue() {
return Math.random().toString(36).slice(2);
return `r${Math.random().toString(36).slice(2)}`;
}

/**
Expand Down

0 comments on commit a076c4b

Please sign in to comment.