• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

CaptainFact / captain-fact-extension / 4737231341

pending completion
4737231341

push

github

GitHub
fix: Manifest V3 fixes (#193)

29 of 123 branches covered (23.58%)

Branch coverage included in aggregate %.

38 of 38 new or added lines in 6 files covered. (100.0%)

57 of 228 relevant lines covered (25.0%)

0.65 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/app/entrypoints/popup.js
1
import React from 'react'
2
import { createRoot } from 'react-dom/client'
3
import { ApolloClient, InMemoryCache, ApolloProvider } from '@apollo/client'
4

5
import { CF_API_URL } from '../lib/constants'
6
import Popup from '../components/Popup'
7

8
// Configure Apollo client
9
const client = new ApolloClient({ uri: CF_API_URL, cache: new InMemoryCache() })
×
10

11
// Connect popup with apollo
12
const App = () => (
×
13
  <ApolloProvider client={client}>
×
14
    <Popup />
15
  </ApolloProvider>
16
)
17

18
// Render popup
19
const root = createRoot(document.getElementById('root'))
×
20
root.render(<App />)
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc