Best JavaScript code snippet using tracetest
getPublicUrlOrPath.test.js
Source:getPublicUrlOrPath.test.js
1/**2 * Copyright (c) 2015-present, Facebook, Inc.3 *4 * This source code is licensed under the MIT license found in the5 * LICENSE file in the root directory of this source tree.6 */7'use strict';8const getPublicUrlOrPath = require('../getPublicUrlOrPath');9const tests = [10 // DEVELOPMENT with homepage11 { dev: true, homepage: '/', expect: '/' },12 { dev: true, homepage: '/test', expect: '/test/' },13 { dev: true, homepage: '/test/', expect: '/test/' },14 { dev: true, homepage: './', expect: '/' },15 { dev: true, homepage: '../', expect: '/' },16 { dev: true, homepage: '../test', expect: '/' },17 { dev: true, homepage: './test/path', expect: '/' },18 { dev: true, homepage: 'https://create-react-app.dev/', expect: '/' },19 {20 dev: true,21 homepage: 'https://create-react-app.dev/test',22 expect: '/test/',23 },24 // DEVELOPMENT with publicURL25 { dev: true, publicUrl: '/', expect: '/' },26 { dev: true, publicUrl: '/test', expect: '/test/' },27 { dev: true, publicUrl: '/test/', expect: '/test/' },28 { dev: true, publicUrl: './', expect: '/' },29 { dev: true, publicUrl: '../', expect: '/' },30 { dev: true, publicUrl: '../test', expect: '/' },31 { dev: true, publicUrl: './test/path', expect: '/' },32 { dev: true, publicUrl: 'https://create-react-app.dev/', expect: '/' },33 {34 dev: true,35 publicUrl: 'https://create-react-app.dev/test',36 expect: '/test/',37 },38 // DEVELOPMENT with publicURL and homepage39 { dev: true, publicUrl: '/', homepage: '/test', expect: '/' },40 { dev: true, publicUrl: '/test', homepage: '/path', expect: '/test/' },41 { dev: true, publicUrl: '/test/', homepage: '/test/path', expect: '/test/' },42 { dev: true, publicUrl: './', homepage: '/test', expect: '/' },43 { dev: true, publicUrl: '../', homepage: '/test', expect: '/' },44 { dev: true, publicUrl: '../test', homepage: '/test', expect: '/' },45 { dev: true, publicUrl: './test/path', homepage: '/test', expect: '/' },46 {47 dev: true,48 publicUrl: 'https://create-react-app.dev/',49 homepage: '/test',50 expect: '/',51 },52 {53 dev: true,54 publicUrl: 'https://create-react-app.dev/test',55 homepage: '/path',56 expect: '/test/',57 },58 // PRODUCTION with homepage59 { dev: false, homepage: '/', expect: '/' },60 { dev: false, homepage: '/test', expect: '/test/' },61 { dev: false, homepage: '/test/', expect: '/test/' },62 { dev: false, homepage: './', expect: './' },63 { dev: false, homepage: '../', expect: '../' },64 { dev: false, homepage: '../test', expect: '../test/' },65 { dev: false, homepage: './test/path', expect: './test/path/' },66 { dev: false, homepage: 'https://create-react-app.dev/', expect: '/' },67 {68 dev: false,69 homepage: 'https://create-react-app.dev/test',70 expect: '/test/',71 },72 // PRODUCTION with publicUrl73 { dev: false, publicUrl: '/', expect: '/' },74 { dev: false, publicUrl: '/test', expect: '/test/' },75 { dev: false, publicUrl: '/test/', expect: '/test/' },76 { dev: false, publicUrl: './', expect: './' },77 { dev: false, publicUrl: '../', expect: '../' },78 { dev: false, publicUrl: '../test', expect: '../test/' },79 { dev: false, publicUrl: './test/path', expect: './test/path/' },80 {81 dev: false,82 publicUrl: 'https://create-react-app.dev/',83 expect: 'https://create-react-app.dev/',84 },85 {86 dev: false,87 publicUrl: 'https://create-react-app.dev/test',88 expect: 'https://create-react-app.dev/test/',89 },90 // PRODUCTION with publicUrl and homepage91 { dev: false, publicUrl: '/', homepage: '/test', expect: '/' },92 { dev: false, publicUrl: '/test', homepage: '/path', expect: '/test/' },93 { dev: false, publicUrl: '/test/', homepage: '/test/path', expect: '/test/' },94 { dev: false, publicUrl: './', homepage: '/test', expect: './' },95 { dev: false, publicUrl: '../', homepage: '/test', expect: '../' },96 { dev: false, publicUrl: '../test', homepage: '/test', expect: '../test/' },97 {98 dev: false,99 publicUrl: './test/path',100 homepage: '/test',101 expect: './test/path/',102 },103 {104 dev: false,105 publicUrl: 'https://create-react-app.dev/',106 homepage: '/test',107 expect: 'https://create-react-app.dev/',108 },109 {110 dev: false,111 publicUrl: 'https://create-react-app.dev/test',112 homepage: '/path',113 expect: 'https://create-react-app.dev/test/',114 },115];116describe('getPublicUrlOrPath', () => {117 tests.forEach(t =>118 it(JSON.stringify(t), () => {119 const actual = getPublicUrlOrPath(t.dev, t.homepage, t.publicUrl);120 expect(actual).toBe(t.expect);121 })122 );...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!