mirror of
https://github.com/discourse/discourse.git
synced 2025-06-11 05:13:41 +08:00
Rename all test files from JS -> ES6
This commit is contained in:
11
test/javascripts/lib/bbcode-test.js
Normal file
11
test/javascripts/lib/bbcode-test.js
Normal file
@ -0,0 +1,11 @@
|
||||
import { parseBBCodeTag } from "pretty-text/engines/discourse-markdown/bbcode-block";
|
||||
|
||||
QUnit.module("lib:pretty-text:bbcode");
|
||||
|
||||
QUnit.test("block with multiple quoted attributes", assert => {
|
||||
const parsed = parseBBCodeTag('[test one="foo" two="bar bar"]', 0, 30);
|
||||
|
||||
assert.equal(parsed.tag, "test");
|
||||
assert.equal(parsed.attrs.one, "foo");
|
||||
assert.equal(parsed.attrs.two, "bar bar");
|
||||
});
|
Reference in New Issue
Block a user