浏览代码

improve `seed` testing: removed `only` modifier

sanex3339 8 年之前
父节点
当前提交
7d43551208
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      test/functional-tests/javascript-obfuscator/JavaScriptObfuscator.spec.ts

+ 1 - 1
test/functional-tests/javascript-obfuscator/JavaScriptObfuscator.spec.ts

@@ -146,7 +146,7 @@ describe('JavaScriptObfuscator', () => {
             assert.match(obfuscatedCode2, pattern2);
         });
 
-        it.only('should returns same code every time with same `seed`', function () {
+        it('should returns same code every time with same `seed`', function () {
             this.timeout(15000);
 
             const code: string = readFileAsString('./test/fixtures/sample.js');