Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@arnosaine/cra-template

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arnosaine/cra-template - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

3

package.json
{
"name": "@arnosaine/cra-template",
"version": "1.0.2",
"version": "1.0.3",
"keywords": [

@@ -10,3 +10,2 @@ "react",

"description": "The base template for Create React App.",
"main": "template.json",
"repository": {

@@ -13,0 +12,0 @@ "type": "git",

@@ -12,3 +12,3 @@ {

"dependencies": {
"@arnosaine/cra-template-helpers": "^0.1.0",
"@arnosaine/cra-template-helpers": "^0.2.0",
"@testing-library/react": "^9.3.2",

@@ -15,0 +15,0 @@ "@testing-library/jest-dom": "^4.2.4",

import React from 'react';
import { render } from '@testing-library/react';
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});

@@ -6,3 +6,8 @@ import ReactDOM from 'react-dom';

ReactDOM.render(<App />, document.getElementById('root'));
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);

@@ -9,0 +14,0 @@ // If you want your app to work offline and load faster, you can change

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc