feat(tests): add cypress

This commit is contained in:
moklick
2019-09-25 21:33:20 +02:00
parent f6513eff10
commit a6dbd8ebe1
50 changed files with 97906 additions and 11 deletions
+9
View File
@@ -0,0 +1,9 @@
import React from 'react';
import { render } from 'react-dom';
import { unstable_trace as trace } from 'scheduler/tracing';
import ExampleGraph from './ExampleGraph';
trace('initial render', performance.now(), () =>
render(<ExampleGraph />, document.getElementById('root'))
);