Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

product-names.js 377 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
  1. const productNames = require('../../lib/product-names')
  2. describe('productNames module', () => {
  3. test('is an object with product codes as keys and human-friendly names as values', () => {
  4. expect(productNames.dotcom).toBe('GitHub.com')
  5. expect(productNames['2.15']).toBe('Enterprise Server 2.15')
  6. expect(productNames['2.10']).toBe('Enterprise Server 2.10')
  7. })
  8. })
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...