AbdulElahGwaith's picture
Upload folder using huggingface_hub
84c1942 verified
Raw
History Blame Contribute Delete
1.16 kB
import { getSandboxOptions } from './url.ts';
function testSandboxOptions(url: string) {
expect(getSandboxOptions(url)).toMatchSnapshot();
}
describe('url parameters', () => {
it('keeps everything false on normal urls', () => {
testSandboxOptions('https://codesandbox.io/s/new');
});
it('sets current module if there is one', () => {
testSandboxOptions('https://codesandbox.io/s/new?module=test');
});
it('sets preview view', () => {
testSandboxOptions('https://codesandbox.io/s/new?view=preview');
});
it('sets editor view', () => {
testSandboxOptions('https://codesandbox.io/s/new?view=editor');
});
it("doesn't set unknown fields", () => {
testSandboxOptions('https://codesandbox.io/s/new?view=both');
});
it('can hide navigation', () => {
testSandboxOptions('https://codesandbox.io/s/new?hidenavigation=1');
});
it('can autoresize', () => {
testSandboxOptions('https://codesandbox.io/s/new?autoresize=1');
});
it('can handle multiple options', () => {
testSandboxOptions(
'https://codesandbox.io/s/new?autoresize=1&view=editor&module=test&hidenavigation=1'
);
});
});